kindeditor4.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
editor1.text()
看看文档,貌似没有这个方法
.util.getpureData(
"FCKeditor1"
);