如何在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
答案 0 :(得分:1)
使用<
和>
:
<td class="some_class" onclick='pop(this.title+"<br>"+this.name')>