我在 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" />&b=<xsl:value-of select="from/longitude" />&c=<xsl:value-of select="to/latitude" />&d=<xsl:value-of select="to/longitude" />&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 文件应用样式的正确方法吗?