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