【发布时间】:2014-08-23 08:56:06
【问题描述】:
假设这是我的代码:
<div class="editor" contenteditable></div>
// This is working for me
$('.editor').click(function(){
$(this).ckeditor();
});
// This is the problem
$('.editor').on('focusout', function(){
$(this).ckeditorDestroy(); // What will destroy ckeditor?
});
我知道这个功能不存在,但我什么也没找到?
【问题讨论】: