主题: 关于htmlTags过滤的问题
作者: Agulado, 发布日期: 2013-06-27 17:05:33, 浏览数: 2321

想保留过滤功能,只是不过滤class,所以在htmlTags里加上class,如下:

htmlTags: {
  li: ['class'],

 font : ['class', 'color', 'size', 'face', '.background-color'],
span : [
'class', '.color', '.background-color', '.font-size', '.font-family', '.background',
'.font-weight', '.font-style', '.text-decoration', '.vertical-align', '.line-height'
],

div : [
'class', 'align', '.border', '.margin', '.padding', '.text-align', '.color',
'.background-color', '.font-size', '.font-family', '.font-weight', '.background',
'.font-style', '.text-decoration', '.vertical-align', '.margin-left'
],

。。。。。。。。。。后面省略

===================================

其中,li是我增加的标签,其他都是原有默认的。

问题:现在,只有li的class会被屏蔽掉,其他的就没事儿……是我写的不对吗?


发表新帖 发表回复