Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个带有 javascript int 的 xsl 文档,其中我将 url 参数附加到字符串。
window.parent.parent.addTab('Loading...', 'PGS/ContentView.aspx?dpath=' + dpath + '&hashValue=' + hashValue);
使用 Visual Studio 的 xsl 给了我一个错误,说明实体“哈希值”未定义,它是一个有效参数被传递给函数。
尝试使用&并将其包装在 xsl:text 中:
&
<xsl:text disable-output-escaping="yes">&</xsl:text>