0

我有以下代码:

var td = textbox.closest('tr').children('td:first');

我想获取表中最近的 tr 的索引并将其设置为变量,因此我需要将 index() 函数放在最接近的 ('tr') 和 children('td:first'); 之间。像这样的东西:

var td = textbox.closest('tr').index(/*PUT A FUNCTION HERE */).children('td:first');

我知道我可以像这样完成这个:

var index = textbox.closest('tr').index();

但我想知道是否可以使用链接方法来实现。

4

1 回答 1

3

index函数返回一个数字,而不是一个 jQuery 对象。你不能把它锁起来。

于 2012-11-13T15:02:46.737 回答