jQuery:选择表的前五行

时间:2009-08-04 17:07:01

标签: javascript jquery

如何快速获取表格前5行中文本框的jQuery选择器?我有一个包含许多行和许多文本框的表;我只是想在表格的前5行中选择文本框。有一个简单的方法吗?

3 个答案:

答案 0 :(得分:12)

使用lt()

$('tr:lt(5) input[type=text]') 

注意它是lt(5),而不是lt(6),因为索引是从0开始的。

答案 1 :(得分:6)

尝试:

$("#yourTable tr:lt(5) input[type=text]")

答案 2 :(得分:-1)

请参阅“http://docs.jquery.com/Selectors/nthChild#index

尝试宽度:

$("table tbody tr:nth-child(0)").html();
$("table tbody tr:nth-child(1)").html();
$("table tbody tr:nth-child(2)").html();
$("table tbody tr:nth-child(3)").html();
$("table tbody tr:nth-child(4)").html();