我阅读了这篇文章,并试图通过 jQuery 将文本简单地添加到我的 CKEditor 中。我正在使用此代码,但它给出了以下错误:
$(document).ready(function(){
CKEDITOR.instances.txtDESCRIPTION.insertText('some text here');
});
---
<%@ Register TagPrefix="CKEditor" Namespace="CKEditor.NET" Assembly="CKEditor.NET" %>
<CKEditor:CKEditorControl id="txtDESCRIPTION" Toolbar="SplendidCRM" Language='<%# Session["USER_SETTINGS/CULTURE"] %>' Height="400" BasePath="~/ckeditor/" FilebrowserUploadUrl="../ckeditor/upload.aspx" FilebrowserBrowseUrl="../Images/Popup.aspx" FilebrowserWindowWidth="640" FilebrowserWindowHeight="480" runat="server" />
未捕获的类型错误:无法调用未定义的方法“insertText”
如何简单地将文本“测试”添加到我的 CKEditor?
注意:这使用 CKEditor.NET,而不是 jQuery CKEditor 版本。