本文以定位到第三個文本框為例為大家詳細介紹下jquery 定位元素幾種方法,感興趣的朋友可以參考下,希望對大家有所幫助
復制代碼 代碼如下:
<html>
<table class=”ed”>
<tr>
<td><input type="text"></input></td>
<td><input type="text"></input></td>
<td><input type="button"></input></td>
<td><input type="text"></input></td>
</tr>
</table>
</html>
需要定位到第三個文本框的時候:
復制代碼 代碼如下:
$(“.ed input:text)”).eq(3)
$(“.ed input:text:eq(3)”)
$(“.ed input[type=”text”]”).eq(3)
$(“.ed input[type=”text”]:eq(3)”)
其中.ed中ed是class="ed"。