链接jQuery索引()函数

时间:2012-11-13 15:00:17

标签: jquery chaining

我有以下代码:

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

我想得到最接近tr的索引并将其设置为一个变量,所以我需要将index()函数放在最接近的('tr')和子项('td:first')之间;。像这样:

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

我知道我可以这样做:

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

但我想知道是否可以使用链接方法来制作它。

1 个答案:

答案 0 :(得分:3)

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