gpt4 book ai didi

javascript - CKEditor 插入 HTML

转载 作者:太空狗 更新时间:2023-10-29 14:09:42 26 4
gpt4 key购买 nike

  1. 我有来自数据库的数据。
  2. 在我的 js 文件中,我想更改我的 CKEditor 文本编辑器的值。
  3. 我的值(value)是原始 html。
  4. 我希望将这个原始值写入一个空的 CKEditor 文本编辑器。

我尝试了这些,但一直出现未定义的函数错误:

CKEDITOR.instances.myEditorID.insertHtml( '<p>This is a new paragraph.</p>' );
CKEDITOR.instances.myEditorID.setData( '<p>This is the editor data.</p>' );

我也试过了,但还是未定义的函数错误:

CKEDITOR.instances.YOUREDITORID.updateElement();
alert( document.getElementById( 'YOUREDITORID' ).value );

我尝试了“editor”、“editor1”、“editor2”而不是 myEditorID,但仍然对我不起作用。

提前致谢。

---更新---

这是我的 ckeditor 文本编辑器的 html:

<textarea id="myEditorID" name="myEditor"></textarea>
<script type="text/javascript">
$(function () {
var myEditor = $('#myEditorID');
myEditor.ckeditor({
height: 200,
extraPlugins: 'charcount',
maxLength: 2000,
toolbar: 'TinyBare',
toolbar_TinyBare: [
['Bold','Italic','Underline'],
['Undo','Redo'],['Cut','Copy','Paste'],
['NumberedList','BulletedList','Table'],['CharCount']
]
}).ckeditor().editor.on('key', function(obj) {
if (obj.data.keyCode === 8 || obj.data.keyCode === 46) {
return true;
}
if (myEditor.ckeditor().editor.document.getBody().getText().length >= 2000) {
alert('You have reached the maximum char length');
return false;
}
});
});
</script>

最佳答案

Instead of myEditorID i tried 'editor', 'editor1', 'editor2' but still doesn't work for me.

您需要查看您页面的 HTML 并查看您的编辑器的 ID 字段是什么。会是这样的

<textarea id="my_editor"></textarea>

id 属性是这里需要的内容

CKEDITOR.instances.my_editor.insertHtml('<p>This is a new paragraph.</p>');

关于javascript - CKEditor 插入 HTML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27800375/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com