当tinyMCE编辑器作为小部件添加到页面时,j为空异常

发布于 2024-12-06 06:03:28 字数 504 浏览 1 评论 0原文

我有一个页面,我们可以在其中添加任意数量的包含tinyMCE 编辑器的小部件。当我添加第一个小部件时,编辑器工作正常。如果我尝试添加第二个或更多小部件,第二个小部件的编辑器会显示“j 为空”错误。在所有情况下,小部件和文本区域都有唯一的 ID。

包含编辑器的小部件是使用 jQuery 拖放方法添加的。

该应用程序是在 asp.net mvc 3 中创建的,

我使用函数来初始化tinyMCE

tinyMCE.execCommand('mceAddControl', false, textareas_id);

和销毁tinyMCE,因为

tinyMCE.execCommand('mceFocus', false, textareas_id);
 tinyMCE.execCommand('mceRemoveControl', false, textareas_id);

我需要所有小部件的编辑器都能正常工作

I have a page where we can add any number of widgets containing tinyMCE editor. When I add the first widget the editor works fine. If I try to add a second widget or more the editor of the second widget shows 'j is null' error. The widgets and textareas have unique ids in all the cases.

The widgets containing the editor is added using jQuery drag and drop method.

The application is created in asp.net mvc 3

I used functions for initializing the tinyMCE as

tinyMCE.execCommand('mceAddControl', false, textareas_id);

and for destroying the tinyMCE as

tinyMCE.execCommand('mceFocus', false, textareas_id);
 tinyMCE.execCommand('mceRemoveControl', false, textareas_id);

I need the editors of all the widgets to work fine

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

Saygoodbye 2024-12-13 06:03:28

确保所有的tinymce编辑器都有不同的id。

您可能想检查这个关于“j is空”错误。

Make sure all tinymce editors have different ids.

You may weant to check this SO-question regarding the "j is null" error.

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