基于 webkit 引擎的浏览器中的 substring-before() 和 substring-after 问题

发布于 2024-10-21 20:43:12 字数 3069 浏览 3 评论 0原文

下面您可能会看到生成单选按钮的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆里有你的影子 2024-10-28 20:43:12

当我对我正在使用的 9 个 XSLT(1.0 和 2.0)处理器中的每一个执行该转换时,该转换产生了预期的结果。

我通过以下方式调用您的模板:

<xsl:template match="/">
 <table>
  <xsl:call-template name="createRadioButton">
   <xsl:with-param name="list" select="'true|false|bla|bla'"/>
   <xsl:with-param name="delimiter" select="'|'"/>
   <xsl:with-param name="nameofradio" select="'Phillips'"/>
   <xsl:with-param name="valueofradio" select="200"/>
  </xsl:call-template>
  </table>  
</xsl:template>

因此,这似乎是一个错误 - 将其报告给供应商。

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:

<xsl:template match="/">
 <table>
  <xsl:call-template name="createRadioButton">
   <xsl:with-param name="list" select="'true|false|bla|bla'"/>
   <xsl:with-param name="delimiter" select="'|'"/>
   <xsl:with-param name="nameofradio" select="'Phillips'"/>
   <xsl:with-param name="valueofradio" select="200"/>
  </xsl:call-template>
  </table>  
</xsl:template>

Therefore, this seems as a bug -- report it to the vendor.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文