[ajax动态加载html页面]ajax动态创建KindEditor文本编辑器的方法

更新时间:2020-03-11    来源:页面特效    手机版     字体:

【www.bbyears.com--页面特效】

通常使用方法:

var KE;
KindEditor.ready(function(K) {
        KE = K.create("textarea[name="article_content"]", {
                        items : ["source", "|", "fullscreen", "undo", "redo", "cut", "copy", "paste", "|",
            "fontname", "fontsize", "forecolor", "hilitecolor", "bold", "italic", "underline",
            "removeformat", "justifyleft", "justifycenter", "justifyright", "insertorderedlist",
            "insertunorderedlist", "|", "emoticons", "image", "link", "|", "about"],
                        syncType:"form",
                        afterCreate : function() {
                            var self = this;
                            self.sync();
                        },
                        afterChange : function() {
                            var self = this;
                            self.sync();
                        },
                        afterBlur : function() {
                            var self = this;
                            self.sync();
                        }
        });
});

kindeditor在方法中动态创建在线文本编辑器如下:

KindEditor.create("textarea[id="fieldContent1"]",{
items : ["source", "|", "fullscreen", "undo", "redo", "cut", "copy", "paste", "|",
        "fontname", "fontsize", "forecolor", "hilitecolor", "bold", "italic", "underline",
        "removeformat", "justifyleft", "justifycenter", "justifyright", "insertorderedlist",
        "insertunorderedlist", "|", "emoticons", "image", "link", "|", "about"],
        syncType:"form",
        afterCreate : function() {
            var self = this;
            self.sync();
        },
        afterChange : function() {
            var self = this;
            self.sync();
        },
        afterBlur : function() {
            var self = this;
            self.sync();
        }
});

本文来源:http://www.bbyears.com/wangyetexiao/86439.html

热门标签

更多>>

本类排行