熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Javascript >> 正文

jquery定位input元素的幾種方法小結

2022-06-13   來源: Javascript 

  本文以定位到第三個文本框為例為大家詳細介紹下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()
$(ed input:text:eq())
$(ed input[type=text])eq()
$(ed input[type=text]:eq())

  其中ed中ed是class=ed


【責編:at

From:http://tw.wingwit.com/Article/program/Java/Javascript/201311/25452.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.