我有以下代码:
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();
但我想知道是否可以使用链接方法来制作它。