Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
再会!
如果可能,我只想使模态表单无法关闭。
我的目标是:
如何关闭它的方法是通过它的关闭按钮并按 esc 对吗?(还有其他方法吗?)我该如何摆脱这些?
帮助任何人?提前致谢!
您可以将函数绑定到对话框的 beforeClose 事件并防止在那里关闭。
$(function() { $( "#dialog" ).dialog({ beforeClose: function(event, ui) { return false; } }); });