当tinyMCE编辑器作为小部件添加到页面时,j为空异常
我有一个页面,我们可以在其中添加任意数量的包含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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保所有的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.