主题: 所有<dl><dt><dd>标签丢失 |
作者: ash, 发布日期: 2009-07-18 22:29:02, 浏览数: 5484 |
<div> 把上面的代码复制到代码模式下,然后回到正常模式,再进入代码模式,所有<dl><dt><dd>标签丢失,应该被过滤了
|
作者: Roddy, 发布日期: 2009-07-19 00:09:06 |
filterMode
true或false,true时过滤HTML代码,false时允许输入任何代码。 默认值:true |
回复 |
作者: Zxxk, 发布日期: 2009-07-25 14:29:10 |
把htmlTags整个变量替换成下面的就可以了,包括td,th htmlTags: { font: ['color', 'size', 'face', '.background-color'], span: ['class', '.color', '.background-color', '.font-size', '.font-family', '.font-weight', '.font-style', '.text-decoration', '.vertical-align'], div: ['class', 'align', '.border', '.margin', '.padding', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.font-weight', '.font-style', '.text-decoration', '.vertical-align'], table: ['class', 'border', 'cellspacing', 'cellpadding', 'width', 'height', 'align', '.padding', '.margin', '.border', 'bgcolor', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.font-weight', '.font-style', '.text-decoration'], 'td,th': ['class', 'align', 'valign', 'width', 'height', 'colspan', 'rowspan', 'bgcolor', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.font-weight', '.font-style', '.text-decoration', '.vertical-align'], a: ['class', 'href', 'target', 'name'], embed: ['src', 'type', 'loop', 'autostart', 'quality', '.width', '.height', '/'], img: ['src', 'width', 'height', 'border', 'alt', 'title', '.width', '.height', '/'], hr: ['class', '/'], br: ['/'], 'p,ol,ul,li,dl,dt,dd,,blockquote,h1,h2,h3,h4,h5,h6': [ 'class', 'align', '.text-align', '.color', '.background-color', '.font-size', '.font-family', '.font-weight', '.font-style', '.text-decoration', '.vertical-align' ], 'tbody,tr,strong,b,sub,sup,em,i,u,strike': [] } |
回复 |