我正在尝试在我的网站上使用 CKeditor。我发现在源模式下,已被 ckeditor 替换的 textarea 没有被更新。我需要更新 textarea,因为页面上的代码设置为在保存时保存 textarea 内容。
在正常模式下,文本正在更新。
$(document).ready(new function() {
var editor = CKEDITOR.instances['content-text'];
if (editor) { editor.destroy(true); }
CKEDITOR.on('instanceCreated', function(e) {
e.editor.on('contentDom', function() {
e.editor.document.on('keyup', function(event) {
// keyup event in ckeditor
UpdateTextArea();
});
});
});
CKEDITOR.replace('content-text');
});
function UpdateTextArea() {
CKEDITOR.instances['content-text'].updateElement();
}
非常感谢任何帮助。这是我第一次问一个问题,如果我错过了什么,非常抱歉!