KindEditor.ready(function(K) {
var editor = K.create('textarea[name="content"]', {
cssPath : '樣式路徑',
uploadJson : '動态上傳處理(lǐ)程序文件',
fileManagerJson : '已上傳文件管理(lǐ)程序文件',
allowFileManager : true,
afterCreate : function() {
var self = this;
K.ctrl(document, 13, function() {
self.sync();
K('form[name=myform]')[0].submit();
});
K.ctrl(self.edit.doc, 13, function() {
self.sync();
K('form[name=myform]')[0].submit();
});
}
});
prettyPrint();
});
紅色部分(fēn)調整爲以下(xià)編碼
KindEditor.ready(function(K) {
var editor = K.create('textarea[id="content"]', {
cssPath : '樣式路徑',
uploadJson : '動态上傳處理(lǐ)程序文件',
fileManagerJson : '已上傳文件管理(lǐ)程序文件',
allowFileManager : true,
afterBlur : function() {
this.sync();
K.ctrl(document, 13, function() {
K('form[name=myform]')[0].submit();
});
K.ctrl(this.edit.doc, 13, function() {
K('form[name=myform]')[0].submit();
});
}
});
prettyPrint();
});
意思是當失去焦點時(shí)執行 this.sync();
關于 this.sync() 函數簡單的(de)說就是同步KindEditor的(de)值到textarea文本域。