jQuery Simple Dialog
jQuery Simple Dialog 是一个用来实现弹出很简单的模态对话框的 jQuery 插件。
示例代码:
$(document).ready(function () {
$('.simpledialog').simpleDialog({
opacity: 0.3,
duration: 500,
title: 'Simple Dialog',
open: function (event) {
console.log('open!');
},
close: function (event, target) {
console.log('close!');
}
});
});
评论