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

时间:2011-03-11 09:42:47

标签: xslt webkit

下面你可能会看到xslt代码来生成radiobuttons。它适用于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> 

我在网上搜索时没有看到任何人有我的问题。

感谢。

1 个答案:

答案 0 :(得分:3)

当我使用我正在使用的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>

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