jQuery 對話框插件:The Modal
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 關閉(默認啟用)
本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!