主题: ajax 异步加载 怎样获取内容?
作者: mashimin, 发布日期: 2013-06-23 17:27:13, 浏览数: 2427
//加载编辑器
function ajax(ID){
//引入KindEditor
$.getScript('/include/kindeditor/kindeditor.js', function() {
    KindEditor.basePath = '/include/kindeditor/';
    KindEditor.create('textarea[name="msg"]',{items :["emoticons"]});
    });
}

//提交事件
function Post(fid){
//获取提交内容
var html = 编辑器内容。

}


救助 

作者: ciycy, 发布日期: 2013-06-24 14:02:22

KindEditor.create('textarea[name="msg"]',{items :["emoticons"]});

加一段

{afterChange: function (e) {this.sync()}}


意思是说明同步数据。。

回复
发表新帖 发表回复