zoukankan      html  css  js  c++  java
  • KindEditor的htmlTags属性可以过滤不需要的html

    KindEditor的htmlTags属性可以过滤不需要的html

      KE.show({
            id : 'description1',
            items : [
                'fullscreen', 'undo', 'redo', 'print', 'cut', 'copy', 'paste',
                'plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright',
                'justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript',
                'superscript', '|', 'selectall', '-',
                'fontname', 'fontsize', '|', 'textcolor', 'bgcolor', 'bold',
                'italic', 'underline', 'strikethrough', 'removeformat', 'link', 'unlink','|','about'
            ],
            filterMode :true,
           htmlTags:{    //以下为不需要过滤过的字符
                font : ['color', 'size', 'face', '.background-color'],
                span : ['style'],  
               
                hr : ['class', '/'],
                br : ['/'],
                'p,ol,ul,li,blockquote,h1,h2,h3,h4,h5,h6' : ['align', 'style'],
                'strong,b,sub,sup,em,i,u,strike' : []
            }
        });

    转自百度http://hi.baidu.com/jwx_1170/item/d34247e3238bd6226dabb8bb

  • 相关阅读:
    未来行业
    百度网盘搜索方法
    JavaScript继承详解
    Win 7下破解Loadrunner 11(带中文版下载地址)
    NET下RabbitMQ实践[WCF发布篇]
    NET下RabbitMQ实践[示例篇]
    NET下RabbitMQ实践[配置篇]
    8个超炫的 Web 效果
    Windows下安装zip包解压版mysql
    键盘上相当于鼠标右键的快捷键和电脑快捷键大全
  • 原文地址:https://www.cnblogs.com/liziqiang/p/3491839.html
Copyright © 2011-2022 走看看