假设我有一个包含以下行的表,
...
<tr>
<th title="Library of Quintessential Memes">LQM:</th>
</tr>
<tr>
<th title="Library of Boring Books">LBB:</th>
</tr>
...
我想选择第一个<tr>
孩子的文字以“L”开头的所有<th>
元素。如何使用XPath选择器执行此操作?
答案 0 :(得分:2)
使用starts-with
功能:
//tr[starts-with(th[1],"L")]