如何使用JQuery获取CKEditor的内容?
我正在使用CKEditor。我使用页面方法使用ajax保存表单值。
但是CKEditor值的内容无法保存到表中。
我不回发页面。
我该怎么办?
回答:
首先,您应该在页面中包含ckeditor和jquery连接器脚本,
然后创建一个文本区域
<textarea name="content" class="editor" id="ms_editor"></textarea>
将ckeditor附加到文本区域,在我的项目中,我使用如下代码:
$('textarea.editor').ckeditor(function() { }, { toolbar : [
['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'],
['Undo','Redo'],
['Bold','Italic','Underline','Strike','-','Subscript','Superscript'],
['NumberedList','BulletedList','-','Outdent','Indent','Blockquote'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'],
['Link','Unlink','Anchor', 'Image', 'Smiley'],
['Table','HorizontalRule','SpecialChar'],
['Styles','BGColor']
], toolbarCanCollapse:false, height: '300px', scayt_sLang: 'pt_PT', uiColor : '#EBEBEB' } );
提交时使用以下内容获取内容:
var content = $( 'textarea.editor' ).val();
而已!:)
以上是 如何使用JQuery获取CKEditor的内容? 的全部内容, 来源链接: utcz.com/qa/402427.html