主题: KindEditor 4.1.9 ,如何取到初始值
作者: 泽西, 发布日期: 2013-10-24 11:17:50, 浏览数: 3185

按照demo中的

KindEditor.ready(function(K) {
var editor1 = K.create('textarea[name="content1"]', {
cssPath : '../kindeditor/plugins/code/prettify.css',
uploadJson : '../kindeditor/jsp/upload_json.jsp',
fileManagerJson : '../kindeditor/jsp/file_manager_json.jsp',
allowFileManager : true,
afterCreate : function() {
var self = this;
K.ctrl(document, 13, function() {
self.sync();
document.forms['example'].submit();
});
K.ctrl(self.edit.doc, 13, function() {
self.sync();
document.forms['example'].submit();
});
}
});
prettyPrint();
});

新建的时候,值为空,一切正常。

但是修改的时候,取不到新建时输入的值。

请各位大侠帮忙解决一下。万分感谢。

作者: 小浪子, 发布日期: 2013-10-24 16:29:34
KindEditor.ready(function(K) {
    var editor1 = K.create('textarea[name="content1"]', {
        cssPath: '../kindeditor/plugins/code/prettify.css',
        uploadJson: '../kindeditor/jsp/upload_json.jsp',
        fileManagerJson: '../kindeditor/jsp/file_manager_json.jsp',
        allowFileManager: true,
        afterChange: function() {
            this.sync();
        },
        afterBlur: function() {
            this.sync();
        }
    });
    prettyPrint();
});
回复
作者: 泽西, 发布日期: 2013-10-24 17:42:50
回复小浪子:感谢您的回复。试过了,还是不行。
回复
发表新帖 发表回复