jQuery 对话框插件:The Modal
jopen
11年前
The Modal 是个 jQuery 对话框插件,类似 非死book 和 VK 照片 modals。
// attach close button handler $('.modal .close').on('click', function(e){ e.preventDefault(); $.modal().close(); }); // open modal with default options or options set with init // content will be taken from #login $('#terms-of-service').modal().open(); // also we can open modal overriding some default options $('#terms-of-service').modal().open({ closeOnESC: false }); // Close modal. There's no need to choose which one since only one can be opened $.modal().close();
功能
-
不需要额外的标记
-
用户可以使用它 w/o 标记来打开空 modal 和填充数据
-
可选 ESC 关闭(默认启用)