gpt4 book ai didi

xslt - 从 xslt 在 href 中传递多个参数

转载 作者:行者123 更新时间:2023-12-04 06:08:03 25 4
gpt4 key购买 nike

我正在通过 xslt 将 xml 文档转换为 html。在 .以下是代码:

<A href='index.html?id={str[2]}&classname={str[3]}'><xsl:value-of select="str[4]"/></A>

这适用于单个参数。有什么建议吗?

最佳答案

<A href='index.html?id={str[2]}&classname={str[3]}'><xsl:value-of select="str[4]"/></A>


这不是一个格式良好的 XML 文档。

在格式良好的 XML 文档中, &不在注释中或未用作实体引用名称开头的字符必须进行转义。

这是正确的 :
<A href='index.html?id={str[2]}&amp;classname={str[3]}'><xsl:value-of select="str[4]"/></A>

关于xslt - 从 xslt 在 href 中传递多个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8118946/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com