使用kindeditor获取不到富文本框中的值
Posted youmingkuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用kindeditor获取不到富文本框中的值相关的知识,希望对你有一定的参考价值。
获取不到富文本框中的值,网上一搜一堆,但最终没有几个能解决问题的,折腾一番最终解决。注意就是红色代码,加上之后就可以解决问题了。
KindEditor.ready(function (K) var editor1 = K.create(‘#AContents‘, cssPath: ‘/Content/kindeditor/plugins/code/prettify.css‘, uploadJson: ‘/Content/kindeditor/asp.net/upload_json.ashx‘, //uploadJson:‘/WeXin/Article/ProcessRequest‘, fileManagerJson: ‘/Content/kindeditor/asp.net/file_manager_json.ashx‘, //fileManagerJson:‘/WeXin/Article/ProcessRequest2‘, allowFileManager: true, afterCreate: function () var self = this; K.ctrl(document, 13, function () self.sync(); K(‘form[name=example]‘)[0].submit(); ); K.ctrl(self.edit.doc, 13, function () self.sync(); K(‘form[name=example]‘)[0].submit(); ); , afterBlur: function () this.sync(); ); prettyPrint(); );
以上是关于使用kindeditor获取不到富文本框中的值的主要内容,如果未能解决你的问题,请参考以下文章