function closedg(obj){ $(obj).parents(".com-dialog").remove(); } function cancel(obj){ $(obj).parents(".com-dialog").remove(); WKmsg.msg('您选择了取消本次操作!',2000); } //function yes(){ // alert(300); //} var WKbody = document.getElementById('app'); var WKtcon = ''; var WKmsg = { msg: function (msg,time){ WKtcon = '
' + msg + '
'; WKbody.insertAdjacentHTML('beforeend',WKtcon); setTimeout(function(){ document.getElementById("WKmsg").remove(); },time); }, confirmMsg: function (data){ WKtcon = '
'; if(!!data.title){ WKtcon += '
' + data.title + '
'; } WKtcon += '
' + data.intro + '
'; if(data.btn.length <= 1){ WKtcon += '
'; }else if(data.btn.length <= 2){ WKtcon += '
'; } WKtcon += '
'; WKbody.insertAdjacentHTML('beforeend',WKtcon); if(data.title=="" || data.title==null){ $(".dialog-con").height(110); } $(".dialog-btn-2").click(function(){ if($(this).index()==1){ data.yes(); } }); }, inputMsg: function(data){ WKtcon = '
'; if(!!data.title){ WKtcon += '
' + data.title + '
'; } WKtcon += '
' + data.inp + '
'; if(data.btn.length <= 1){ WKtcon += '
'; }else if(data.btn.length <= 2){ WKtcon += '
'; } WKtcon += '
'; WKbody.insertAdjacentHTML('beforeend',WKtcon); if(data.title=="" || data.title==null){ $(".dialog-con").height(110); } $(".dialog-btn-2").click(function(){ if($(this).index()==1){ data.yes(); } }); }, picMsg: function(data){ WKtcon = '
'; if(!!data.title){ WKtcon += '
' + data.title + '
'; } WKtcon += '
' + data.pic + '
'; WKtcon += '
'; WKbody.insertAdjacentHTML('beforeend',WKtcon); $(".dialog-con").height(380); } }