当前位置: 软件>JavaScript软件
jQuery Simple Dialog
本文导语: jQuery Simple Dialog 是一个用来实现弹出很简单的模态对话框的 jQuery 插件。 示例代码: $(document).ready(function () { $('.simpledialog').simpleDialog({ opacity: 0.3, duration: 500, title: 'Simple Dialog', open: function (event) { consol...
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!');
}
});
});