是否有查询选择仅包含文字的<td>
,或者为空?
例如:
<tr>
<td>1</td>
<td>Select</td>
<td>me</td>
<td>
<label>but</label>
</td>
<td>
<button>not</button>
<button>me</button>
</td>
<td>
<input type="checkbox" name="orMe" id="orMe">
<label for="orMe">or me</label>
</td>
<td>Select me, too!</td>
</tr>
我搜索了Google and this cheat sheet,但到目前为止,我的搜索已返回null。
答案 0 :(得分:3)
这个XPath,
//td[not(*)]
将选择 没有子元素 的所有td
元素,
<td>1</td>
<td>Select</td>
<td>me</td>
<td>Select me, too!</td>
按要求。