我的HTML
<table border="2" style="background:gray">
<tbody>
<td class="std">
<input id="ActQ1Revenue" type="text" name="amount" disabled="disabled" maxlength="20" style="background:wheat">
</td>
</tr>
<tr>
<td class="atd">
<input id="ActAprRevenue" type="text" name="amount" maxlength="20">
</td>
</tr>
<tr>
<td class="atd">
<input id="ActMayRevenue" type="text" name="amount" maxlength="20">
</td>
</tbody>
</table>
我的XPath
//input[@type='text'][@disabled!='disabled']
我想选择未禁用的文本框,我使用上面的XPath,但这不知道怎么做?
答案 0 :(得分:0)
更改表达式
//input[@type='text' and not(@disabled ='disabled')]