欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

easyui dialog kindeditor

程序员文章站 2022-04-13 13:14:10
...
//设置全局变量
var articleDetailEditor; 
// 初始化kindeditor;
function ArticleeditorCreat(kedit){
        articleDetailEditor = KindEditor.create(kedit,{
            readonlyMode : true,   //只读模式
            afterCreate : function() {
                this.sync();  //同步
            },
            afterBlur:function(){
                this.sync();
            },
        });
    }
// 赋值
articleDetailEditor.html(ontent);
// 二次加载
articleDetailEditor.remove('#id');

 

相关标签: kindeditor