0

如何转义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
4

1 回答 1

1

使用&lt;&gt;

<td class="some_class" onclick='pop(this.title+"&lt;br&gt;"+this.name')>
于 2013-04-14T11:32:52.337 回答