kindeditor不过滤标签属性

                                                                         kindeditor不过滤标签属性

1、问题:
    在富文本编辑器编辑的时候,发现自己在div上写的部分属性不见了,其他标签的部分属性也不见了,h5标签section也不见了,效果图如下:

    (1)、点击富文本左上角'HTML代码'按钮,把自己的html代码放进去:

    (2)、然后查看html的效果:

    (3)、再次点击'HTML代码':

2、解决:
    看官方文档 http://kindeditor.net/doc3.php?cmd=config
    找到一个属性:filterMode
        数据类型:Boolean
        true
时过滤HTML代码,false时允许输入任何代码。
        默认值:false
        注: 3.4以前版本的filterMode默认值为true。

3、总结:原来是插件默认帮我们过滤掉了标签的部分属性,把默认的true改为false即可。

4、或者 想要指定某些标签不过滤。
    属性:htmlTags
        指定要保留的HTML标记和属性。哈希数组的key为HTML标签名,value为HTML属性数组,"."开始的属性表示style属性。
        数据类型:Object
        默认值:
        {
        font : ['color', 'size', 'face', '.background-color'],
        span : ['style'],
        div : ['class', 'align', 'style'],
        table: ['class', 'border', 'cellspacing', 'cellpadding', 'width', 'height', 'align', 'style'],
        'td,th': ['class', 'align', 'valign', 'width', 'height', 'colspan', 'rowspan', 'bgcolor', 'style'],
        a : ['class', 'href', 'target', 'name', 'style'],
        embed : ['src', 'width', 'height', 'type', 'loop', 'autostart', 'quality',
        'style', 'align', 'allowscriptaccess', '/'],
        img : ['src', 'width', 'height', 'border', 'alt', 'title', 'align', 'style', '/'],
        hr : ['class', '/'],
        br : ['/'],
        'p,ol,ul,li,blockquote,h1,h2,h3,h4,h5,h6' : ['align', 'style'],
        'tbody,tr,strong,b,sub,sup,em,i,u,strike' : []
       }
      注:filterMode为true时有效。3.4版本开始属性可设置style,保留所有inline样式。

5、部分代码:
 

/*定义文本域*/
<textarea name="content" id="content" style=" width: 100%; height:400px" ><?php echo isset($data['content'])?$data['content']:''?></textarea>
/*引入插件*/
<script type="text/javascript" src="<?php echo $cdn_host;?>js/kindeditor-4.1.10/kindeditor.js"></script>
/*初始化插件*/
<script>
    $(function(){
        KindEditor.basePath = '<?php echo $cdn_host;?>js/kindeditor-4.1.10/';
        setTimeout(function(){
            window.editor = KindEditor.create('#content', {
                filterMode: false,//是否开启过滤模式
                uploadJson: '/admin/public/upload?type=imgFile',
            /*    fileManagerJson: '?m=upload&f=file_manager_json&is_json=1',
                allowFileManager: true*/
            });
        },100);
    })
</script>

猜你喜欢

转载自blog.csdn.net/qq_36025814/article/details/85105823
今日推荐