0

假设我有一个包含以下行的表,

...
<tr>
  <th title="Library of Quintessential Memes">LQM:</th>
</tr>
<tr>
  <th title="Library of Boring Books">LBB:</th>
</tr>
...

我想选择第一个子文本以“L”开头的所有<tr>元素。<th>如何使用 XPath 选择器做到这一点?

4

1 回答 1

2

使用starts-with功能:

//tr[starts-with(th[1],"L")]
于 2012-10-23T16:46:45.620 回答