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.
我已经在我的应用程序中使用了许多对话框。但现在,我不想再使用可调整大小的功能了。
我知道“ resizable: false ”会关闭这个功能。但是,如何只使用一次而不在每个对话框构造函数中逐一使用呢?
谢谢。
您可以对 jQuery UI 的选项进行原型设计:
$.extend($.ui.dialog.prototype.options, { resizable: false, });