KindEditor过滤html代码

前端之家收集整理的这篇文章主要介绍了KindEditor过滤html代码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

KindEditor过滤HTML代码@H_301_1@
KindEditor.ready(function(K){
    var editor = K.create('#content',{
        pasteType : 1,        items:["fontsize","preview","redo","undo","|","forecolor","bold","italic","underline","insertorderedlist","insertunorderedlist","image","emoticons"],        resizeType:0,        afterBlur : function(){
            this.sync();
        }
    });
})

1.  pasteType : 0,(不可粘贴)
2.  pasteType : 1,(存文本粘贴)

网页上直接复制的内容粘贴在编辑器直接过滤所有HTML代码


猜你在找的jQuery相关文章