elrte:对话框不是函数错误
当我单击“添加图像”或“添加 Flash”或“添加表格”按钮时,尤其是当我单击打开对话框的按钮时,我收到此错误。
您认为问题出在哪里?
in firefox
Error: jQuery("<div />").addClass(this.opts.class).dialog is not a function
source file: elrte/js/elrte.min.js
Line: 3
in chrome
Uncaught TypeError: Object [object Object] has no method 'dialog' elrte/js/elrte.min.js:3
When I click add image or add flash or add table button, especially when I click buttons that open a dialog box, I'm getting this error.
What is the problem do you think?
in firefox
Error: jQuery("<div />").addClass(this.opts.class).dialog is not a function
source file: elrte/js/elrte.min.js
Line: 3
in chrome
Uncaught TypeError: Object [object Object] has no method 'dialog' elrte/js/elrte.min.js:3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为问题与错误消息所解释的完全一样。您的 jQuery 对象没有名为
dialog
的方法。默认情况下,jQuery 没有
dialog
方法,而且显然还没有提供。jQueryUI 确实有一个,因此如果您打算使用它,则需要加载它。
这是 jQueryUI 对话框的演示页面。
I think the problem is exactly as the error messages explain. Your jQuery object doesn't have a method named
dialog
.jQuery doesn't have a
dialog
method by default, and apparently one hasn't been provided.jQueryUI does have one, so you'd need to load that if that's the one you're intending to use.
Here's the demo page for jQueryUI dialogs.
您应该添加 jQuery UI CSS 框架 (jquery-ui-1.8.13.custom.css)
在新 Elrte 1.3 中打开对话框不适用于旧版本 jquery UI 1.7!
最新版本 1.3 仅适用于 jquery UI > 1.8.3
You should add jQuery UI CSS Framework (jquery-ui-1.8.13.custom.css)
Open dialogs in new Elrte 1.3 not working with old version jquery UI 1.7!
Last version 1.3 working just jquery UI > 1.8.3