kindeditor html代码过滤(丢失某些HTML标签)

kindeditor html代码过滤(丢失某些HTML标签)

  (2014-04-26 11:23:30)
转载
  分类: html
这是因为3.4版本以前编辑器默认开启了过滤模式(filterMode:true)。当filterMode为true时,编辑器会根据htmlTags设定自动过滤HTML代码,主要是为了生成干净的代码。
如果想保留所有HTML,请将filterMode设置成false。如果想保留特定HTML,请将filterMode设置成true后,配置htmlTags属性。
从3.4版本开始默认关闭过滤模式,所以要过滤HTML,需要将filterMode设置成true。 KE . show ({
        id 
:   'textarea_id' ,
        filterMode 
:   true   // true:开启过滤模式, false:关闭过滤模式
});

http://www.kindsoft.net/doc3.php?cmd=qna

http://hi.baidu.com/jwx_1170/item/d34247e3238bd6226dabb8bb


我想去掉a标签 所以直接在kindeditor-min.js 中 搜索htmlTags 把默认的标签全部删除,哈哈 成功了。
http://www.kindsoft.net/doc3.php?cmd=config

官方的默认的

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' : []
}

原文: http://wolf123.blog.163.com/blog/static/17505429820127305757/ 

你可能感兴趣的:(KE)