如何将“keyup”事件附加到 CKedtior(我使用的是 jQuery 适配器)
这是我目前使用的代码:
$('#ckeditor textarea').ckeditor(function(editorInstance) {
/* attaching "keyup" doesnt seem work so I have to stick with "key" */
$('#ckeditor textarea').ckeditorGet().on('key', function(e) {
/* do stuff ... */
});
}, {
skin : 'office2003'
});
整个想法是每次更改内容时获取ckeditor内容。希望有人可以在这里提供帮助。
谢谢