基于 webkit 引擎的浏览器中的 substring-before() 和 substring-after 问题
下面您可能会看到生成单选按钮的 xslt 代码。它适用于 firefox 和 opera,但不适用于 arora(使用 webkit 引擎)。简而言之,我没有尝试任何其他浏览器使用 webkit 引擎
<xsl:template name="createRadioButton">
<xsl:param name="list" /><!-- something like : true|false|bla|bla -->
<xsl:param name="delimiter" /> <!-- "|" -->
<xsl:param name="nameofradio" /> <!-- sampleName -->
<xsl:param name="valueofradio" /> <!-- sampleValue -->
<xsl:variable name="newlist">
<xsl:choose>
<xsl:when test="contains($list, $delimiter)">
<xsl:value-of select="normalize-space($list)" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat(normalize-space($list), $delimiter)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- problem is these two lines. When I assign something else it works.-->
<xsl:variable name="first" select="substring-before($newlist, $delimiter)" />
<xsl:variable name="remaining" select="substring-after($newlist, $delimiter)" />
<xsl:element name="input">
<xsl:attribute name="type">radio</xsl:attribute>
<xsl:attribute name="name"><xsl:value-of select="$nameofradio"/></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="$first"/></xsl:attribute>
<xsl:choose>
<xsl:when test="@hassection='true'">
<xsl:attribute name="onclick">showHiddenTable(this.value);validateFormElement(this.name,this.value);</xsl:attribute>
</xsl:when>
<xsl:when test="$valueofradio = $first">
<xsl:attribute name="checked">checked</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="onclick">validateFormElement(this.name,this.value)</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
<xsl:value-of select="$first" />
<xsl:if test="$remaining">
<xsl:call-template name="createRadioButton">
<xsl:with-param name="list" select="$remaining" />
<xsl:with-param name="delimiter"><xsl:value-of select="$delimiter"/></xsl:with-param>
<xsl:with-param name="nameofradio"><xsl:value-of select="$nameofradio"/></xsl:with-param>
<xsl:with-param name="valueofradio"><xsl:value-of select="$valueofradio"/></xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:template>
我搜索网络没有看到有人有我的问题。
谢谢。
Below you may see xslt code to produce radiobuttons. It works on firefox and opera but not on arora(uses webkit engine). Briefly I didn't try it any other browsers use webkit engine
<xsl:template name="createRadioButton">
<xsl:param name="list" /><!-- something like : true|false|bla|bla -->
<xsl:param name="delimiter" /> <!-- "|" -->
<xsl:param name="nameofradio" /> <!-- sampleName -->
<xsl:param name="valueofradio" /> <!-- sampleValue -->
<xsl:variable name="newlist">
<xsl:choose>
<xsl:when test="contains($list, $delimiter)">
<xsl:value-of select="normalize-space($list)" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="concat(normalize-space($list), $delimiter)"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- problem is these two lines. When I assign something else it works.-->
<xsl:variable name="first" select="substring-before($newlist, $delimiter)" />
<xsl:variable name="remaining" select="substring-after($newlist, $delimiter)" />
<xsl:element name="input">
<xsl:attribute name="type">radio</xsl:attribute>
<xsl:attribute name="name"><xsl:value-of select="$nameofradio"/></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="$first"/></xsl:attribute>
<xsl:choose>
<xsl:when test="@hassection='true'">
<xsl:attribute name="onclick">showHiddenTable(this.value);validateFormElement(this.name,this.value);</xsl:attribute>
</xsl:when>
<xsl:when test="$valueofradio = $first">
<xsl:attribute name="checked">checked</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="onclick">validateFormElement(this.name,this.value)</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
<xsl:value-of select="$first" />
<xsl:if test="$remaining">
<xsl:call-template name="createRadioButton">
<xsl:with-param name="list" select="$remaining" />
<xsl:with-param name="delimiter"><xsl:value-of select="$delimiter"/></xsl:with-param>
<xsl:with-param name="nameofradio"><xsl:value-of select="$nameofradio"/></xsl:with-param>
<xsl:with-param name="valueofradio"><xsl:value-of select="$valueofradio"/></xsl:with-param>
</xsl:call-template>
</xsl:if>
</xsl:template>
I searched the web did not see anyone had my problem.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我对我正在使用的 9 个 XSLT(1.0 和 2.0)处理器中的每一个执行该转换时,该转换产生了预期的结果。
我通过以下方式调用您的模板:
因此,这似乎是一个错误 - 将其报告给供应商。
This transformation produced the expected results when I performed it with every one of the 9 XSLT (both 1.0 and 2.0) processors that I am using.
I am calling your template in the following way:
Therefore, this seems as a bug -- report it to the vendor.