jquery、ajax 和 CKEditor - 如何“解除绑定”一个 CKEditor 实例
嘿,我正在使用 jquery、ajax 和 CKEditor:
$( '.ckeditor' ).ckeditor();
第一次通过 ajax 加载页面时,ckeditor()
会顺利启动。第二次就失败了。通常,在绑定时,您会执行以下操作:
.unbind('click').bind('click',function{...})
我该如何取消绑定ckeditor()
?
Hey, I'm using jquery, ajax and CKEditor:
$( '.ckeditor' ).ckeditor();
The first time the page is loaded through ajax the ckeditor()
is fired off without a hitch. The second time it fails. Normally when binding you do something like:
.unbind('click').bind('click',function{...})
What do I do to unbind ckeditor()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我发现的最好的是...
Best I've found is ...
您可以使用以下方法获取 CKEDITOR 对象引用:
然后您可以像这样销毁它:
You can get a CKEDITOR object reference by using:
and then you can destory it like this:
我做了很长的路:)。您可以这样计算 CK 实例的数量:
I did it long way :). You may count the amount of CK instances this way:
简单的方法
按名称获取实例,如果存在则删除:
或
Simple way
Get instances by name , If exist then remove:
OR