我有以下内容:
$('tbody').delegate('td','click',function() {
log($(this).index()); // Column
});
问:我如何确定行?
答案 0 :(得分:3)
使用.parent()
方法。
$('tbody').delegate('td','click',function() {
$(this).parent(); // tr
});
或者您可以使用:
.closest()
.parents()
答案 1 :(得分:2)
parent()
也许就是你要找的东西。像这样:
$(this).parent()