ckeditor取值问题 前台+后台 取值方法

ckeditor这个编辑器,使用jquery ajax post提交,js里面直接通过$("#content").text()获取不到值,原来他有个方法专门返回文本框中的值,下面为具体方法


建立一个webform页面,添加ckeditor编辑器

 <CKEditor:CKEditorControl ID="content" name="content" runat="server"> </CKEditor:CKEditorControl>


后台获取编辑器内容

string ckValue = content.Text;

 

javascript获取

<script type="text/javascript">
        function GetckValue() {
            var content = CKEDITOR.instances.content.getData();   //CKEDITOR.instances.控件ID.getData();
            alert(content);
        }
 </script>



你可能感兴趣的:(ckeditor取值问题 前台+后台 取值方法)