elrte:对话框不是函数错误

发布于 2024-11-24 08:10:58 字数 364 浏览 1 评论 0原文

当我单击“添加图像”或“添加 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

青柠芒果 2024-12-01 08:10:58

我认为问题与错误消息所解释的完全一样。您的 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.

谎言月老 2024-12-01 08:10:58

您应该添加 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文