kindeditor4.1取纯文本值

发布于 2021-11-16 16:50:19 字数 1261 浏览 863 评论 1

 

var editor1;
  KindEditor.ready(function(K) {
   editor1 = K.create('textarea[name="FCKeditor1"]', {
    cssPath : '../../kindeditor/plugins/code/prettify.css',
    uploadJson : '../../kindeditor/jsp/upload_json.jsp',
//    fileManagerJson : '../../kindeditor/jsp/file_manager_json.jsp',
    resizeMode: 0,
    items : [
  'source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste',
  'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
  'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
  'superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/',
  'formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold',
  'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 
  'table', 'hr', 'emoticons', 'baidumap', 'pagebreak',
  'anchor', 'link', 'unlink', '|', 'about'],
    allowFileManager : true   
   }); 
  });
 function save(){
  editor1.sync(); 
  var a=editor1.util.getpureData("FCKeditor1"); 
  alert(a);    
  document.forms['xForm'].submit();
 }

代码是这样的,为什么报js错误:editor1.util 为空或不是对象

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

屌丝范 2021-11-17 14:25:37

editor1.text()

看看文档,貌似没有这个方法.util.getpureData("FCKeditor1");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文