苏起 - 云代码空间
—— 干一件你感兴趣的事,永远不觉得累!
var K = window.KindEditor;//编辑器全局变量 var kinditerArry = new Array(4);//多个编辑器的数组,此处因为我数据绑定控件一页最多显示4个文章所以就写死了长度为4的数组 var kinditerindex = 0; //编辑器初始索下面是关键:
$("#dlstCircleArticle").find("textarea").each(function (index, item) { var objId = $(this).attr("id"); kinditerArry[kinditerindex] = K.create('#' + objId, { cssPath: '../kindeditor-4.1.10/plugins/code/prettify.css', uploadJson: 'ashx/upload_json.ashx', fileManagerJson: 'ashx/file_manager_json.ashx', allowFileManager: false, allowImageRemote: false, //得到焦点事件 afterFocus: function () { self.edit = edit = this; var strIndex = self.edit.html().indexOf("@我也说一句"); if (strIndex != -1) { self.edit.html(self.edit.html().replace("@我也说一句", "")); } }, //值改变事件 afterChange: function () { }, width: "95%", minheight: 30, height: 30, resizeType: 0, //失去焦点事件 afterBlur: function () { this.sync(); self.edit = edit = this; if (self.edit.isEmpty()) { self.edit.html("@我也说一句"); } }, //关键 同步KindEditor的值到textarea文本框 解决了多个editor的取值问题 items: [ 'emoticons' ], afterCreate: function () { var self = this; self.html("@我也说一句"); K.ctrl(document, 13, function () { K('form[name=example]')[0].submit(); }); K.ctrl(self.edit.doc, 13, function () { self.sync(); K('form[name=example]')[0].submit(); }); } }); kinditerindex++; }); })