设置 jQuery UI 对话框默认值的新方法是什么?
我一直在 UI 1.7 中使用以下方法,但它在 1.8 中不再起作用:
$.extend($.ui.dialog.defaults, {
modal: true,
bgiframe: true,
autoOpen: false,
width: 500,
height: 400,
minWidth: 500,
minHeight: 400
});
有新方法吗?
I've been using the following in UI 1.7, but it doesn't work in 1.8 any more:
$.extend($.ui.dialog.defaults, {
modal: true,
bgiframe: true,
autoOpen: false,
width: 500,
height: 400,
minWidth: 500,
minHeight: 400
});
Is there a new method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了我的答案。以下内容:
...需要更改为:
Found my answer. The following:
...needs to be changed to: