How can I select the first element using XSLT?

2019-03-12 05:59发布

I have a list of news items, sorted by dateCreated. I have a preview box control where I only want to show the first item. How can I do that using XSLT?

<xml>
    <news>
        <newsitem>
            <dateCreated>2009-09-09</dateCreated>
            <summary>Something great happened</sumamry>
        </newsitem>
        <newsitem>
            <dateCreated>2009-09-08</dateCreated>
            <summary>Something bad happened</sumamry>
        </newsitem>
        <newsitem>
            <dateCreated>2009-09-07</dateCreated>
            <summary>Something really bad happened</sumamry>
        </newsitem>
    </news>
</xml>

标签: html xml xslt
4条回答
SAY GOODBYE
2楼-- · 2019-03-12 06:39

I had the same question and I think I found a better answer:

<xsl:for-each select="newsItem[1]">
  <div><xsl:value-of select="dateCreated"/></div>
  <div><xsl:value-of select="summary"/></div>
</xsl:for-each>
查看更多
趁早两清
3楼-- · 2019-03-12 06:45
//newsItem[1]

Selects the first book newsItem element, but note that IE5 and later has implemented that [0] should be the first node, but according to the W3C standard it should be [1]!

查看更多
对你真心纯属浪费
4楼-- · 2019-03-12 06:59

If you wish to output XHTML 1.1, here's one way:

<?xml version="1.0"?>
<xsl:transform version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema" exclude-result-prefixes="xsl xs">
<xsl:output mode="xhtml" version="1.1" omit-xml-declaration="yes" 
    encoding="utf-8" media-type="application/xhtml+xml" indent="no" 
    doctype-public="-//W3C//DTD XHTML 1.1//EN" 
    doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />

<xsl:template match="//newsItem[1]">
    <div><xsl:value-of select="dateCreated"/></div>
    <div><xsl:value-of select="summary"/></div>
</xsl:template>

</xsl:transform>
查看更多
看我几分像从前
5楼-- · 2019-03-12 06:59
//newsItem[1]

should do

查看更多
登录 后发表回答