1

我正在传递一张下面有 html 的图片:-

<p>tag img src="http://some image url link" alt="N2QWv.png (512&times;512)" /></p>

尽管我没有在删除标签中提供它,但我的标签正在被删除。

我不希望我的标签被删除。请任何可以提供帮助的人

4

1 回答 1

1

在您的政策文件中提供以下信息:-

<tag name="img" action="validate">
    <attribute name="src" /> 
    <attribute name="style" />
    <attribute name="title" />
    <attribute name="alt" />
</tag>

<attribute name="alt" description="The 'alt' attribute provides alternative text to users when its visual representation is not available">
    <regexp-list>
        <regexp name="paragraph" />
    </regexp-list>
</attribute>

在全局属性标签中添加:-

<attribute name="src" />
于 2016-06-03T11:54:28.367 回答