标签:config 保留 href 过滤 loop edit lis target 好的
复制粘贴内容到编辑器上时,一些标签的属性会被过滤,在config.js里添加白名单配置项,例如:
whitList: {
a: [‘target‘, ‘href‘, ‘title‘, ‘class‘, ‘style‘],
abbr: [‘title‘, ‘class‘, ‘style‘],
address: [‘class‘, ‘style‘],
area: [‘shape‘, ‘coords‘, ‘href‘, ‘alt‘],
article: [],
aside: [],
audio: [‘autoplay‘, ‘controls‘, ‘loop‘, ‘preload‘, ‘src‘, ‘class‘, ‘style‘],
b: [‘class‘, ‘style‘],
bdi: [‘dir‘],
bdo: [‘dir‘]
}
会保留这些设置好的属性内容
标签:config 保留 href 过滤 loop edit lis target 好的
原文地址:http://www.cnblogs.com/su20110702048/p/7642155.html