Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

getting first node in xpath result set

I am trying to select the first element in a set of resulting nodes after executing an xpath query.

When I do this:

//dl

I get the following result set:

[<dl>?…?</dl>?, <dl>?…?</dl>?]

How can I get the first one? Neither of these work:

//dl[1]
//dl[position()=1]

I am executing this in Chrome's Web Inspector.

question from:https://stackoverflow.com/questions/9199415/getting-first-node-in-xpath-result-set

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use the following:

(//dl)[1]

The parentheses are significant. You want the first node that results from //dl (not the set of dl elements that are the first child of their parent (which is what //dl[1] (no parens) returns)).

This is easier to see when one realizes that // is shorthand for (i.e. expands fully to) /descendant-or-self::node()/ so that //dl[1] is equivalent to:

/descendant-or-self::node()/dl[1]

...which is more obviously not what you want. Instead, you're looking for:

(/descendant-or-self::node()/dl)[1]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...