如何使用JQuery获取CKEditor的内容?

前端之家收集整理的这篇文章主要介绍了如何使用JQuery获取CKEditor的内容?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用CKEditor。我使用页面方法使用ajax保存表单值。

但CKEditor的内容值不能保存到表中。

我不回传的页面

我能做什么?

解决方法

首先你应该在页面中包含ckeditor和jquery连接器脚本,

然后创建一个textarea

<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();

而已! 原文链接:https://www.f2er.com/jquery/185233.html

猜你在找的jQuery相关文章