我使用XPath查询在HTML页面中查找某些元素,但它没有按预期工作。我想在元素TR中找到id =" row1"的复选框。 Checkbox既没有名字也没有id。
我的页面如下:
<table>
<thead>
<tr>...</tr>
</thead>
<tbody>
<tr id="row1">
<td class="center">
<div class="aaa">
<label >
<span >AA</span>
<input type="checkbox">
我的查询是/是:
tr[@id='row1']/input[@type='checkbox']
tr[id='row1']//input[@type='checkbox']
tr[@id='row1']//input[@type='checkbox']
但它们都不起作用。