0

我在 XSLT 文件中设置元素的样式,因此所有样式都在此处完成。我想从最后一个列表元素中删除边框底部,但不知道如何在 XSLT 中应用它。这是我的代码:

                <xsl:element name="div">
                <xsl:attribute name="style">
                    <xsl:text>width:120px; margin:0 auto; padding: 0; border: 1px solid black; border-radius: 15px;padding-bottom: 20px; background: #6A819E; margin-top: 20px;</xsl:text>
                </xsl:attribute>
                <xsl:element name="ul">
                    <xsl:attribute name="style">
                        <xsl:text>width:120px; margin:0 auto; padding: 0; background: #6A819E;</xsl:text>
                    </xsl:attribute>
                    <xsl:for-each select="flights/flight"> 
                        <xsl:apply-templates select="route" />
                    </xsl:for-each> 
                </xsl:element>
            </xsl:element>
        </xsl:element>
    </xsl:element>
</xsl:template>


<xsl:template match="route">
    <xsl:element name="li">
        <xsl:attribute name="style">
            <xsl:text>list-style-type:none; width:120px; margin:0 auto;  margin-top: 20px; border-bottom: 1px solid black; text-align:center; background: #6A819E;</xsl:text>
            <xsl:if test="position() = last()">border: none;</xsl:if>
        </xsl:attribute>
        <a><xsl:attribute name="href">map.php?a=<xsl:value-of select="from/latitude" />&amp;b=<xsl:value-of select="from/longitude" />&amp;c=<xsl:value-of select="to/latitude" />&amp;d=<xsl:value-of select="to/longitude" />&amp;e=<xsl:value-of select="routename" /></xsl:attribute><xsl:attribute name="style">
                <xsl:text> text-decoration:none; color:black;</xsl:text>
            </xsl:attribute>
            <xsl:value-of select="routename" />
        </a>
    </xsl:element>

您可以在列表样式中看到我最后应用了最后一个孩子,我现在这是错误的,但我想不出另一种方法来做到这一点。我还可以问,这是对 XSLT 文件应用样式的正确方法吗?

4

1 回答 1

1

您应该尝试以下方法:

 <xsl:attribute name="style">
        <xsl:text>list-style-type:none; width:120px; margin:0 auto;  margin-top: 20px; border-bottom: 1px solid black; text-align:center;</xsl:text>
        <xsl:if test="position() = last()">border: none;</xsl:if>
 </xsl:attribute>

您还可以使用 CSS 类而不是使用内联样式。在这种情况下,您应该能够使用 CSS 中的最后一个子选择器(但是,IE7、IE8 不支持此选择器(http://caniuse.com/#search=%3Alast-child)。

更新1:如果有文本节点插入路由元素,上述方法将不起作用,因此另一种方法是为最后一个元素使用不同的模板。

<xsl:template match="route[last()]">
    <!-- Special behavior for last element -->
</xsl:template>

更新 2:使用 if 语句同时忽略与路由不同的所有节点的另一个选项是:

<xsl:if test="not(following-sibling::route)">border:none;</xsl:if>
于 2013-02-17T10:44:10.010 回答