1、怎么关闭loading
2、添加alert success
3、用微信那边那个alert和confirm的样式
4、loading用微信那边的
5、添加微信那边那个勾对弹窗
$.dialog({
content : '对话框内容',
title : 'ok', //有三种:ok、alert、load
ok : function() {
alert('我是确定按钮,回调函数返回false时不会关闭对话框。');
return false;
},
cancel : function() {
alert('我是取消按钮');
},
lock : true //遮罩
});
$.dialog({
content : '窗口将在2秒后自动关闭',
title: "alert",
width: 600,
time : 2000
});
$.dialog();