Posted in Javascript onJuly 28, 2013
<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"。
jquery 定位input元素的几种方法小结
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@