django:tinymce 编辑器未在 ajax 加载时加载
我在我的网站中使用 django-tinymce 。表单的 Tinymce 编辑器出现在正常页面加载中,但是当在 ajax 加载(使用 jquery 加载)上加载表单部分时,其 tinymce 编辑器不会加载。在 firebug 中它不会给出任何错误。可能是什么原因?
任何帮助将不胜感激..谢谢
I am using django-tinymce in my website. Tinymce editor of the form appear on normal page load, but its tinymce editor doesn't loads when form section is loaded on ajax load(using jquery load). In firebug it doesn't gives any error. What may be the reasons?
Any help would be appreciated.. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
原因之一可能是前一个tinymce实例没有正确关闭。
在删除 Dom 的某些部分之前使用它
,并在需要时重新初始化它
One reason could be that the former tinymce instance has not been shut down correctly.
Use this before removing parts of the Dom
and reinitialize it afterwards if needed