在xsl文件中转义“<br/>”

时间:2013-04-14 11:32:52

标签: xslt escaping

如何在XSL中转义<>个字符?

相关代码行是:

<td class="some_class" onclick='pop(this.title)'>

我想改为:

<td class="some_class" onclick='pop(this.title+"<br>"+this.name')>

以下消息(在Chrome中)失败:

error on line 928 at column 60: Unescaped '<' not allowed in attributes values

1 个答案:

答案 0 :(得分:1)

使用&lt;&gt;

<td class="some_class" onclick='pop(this.title+"&lt;br&gt;"+this.name')>