2

我有一个包含一些TH元素的 html 表。我通过 jQuery 找到了一个特定TH的,我需要知道它的index。我TH通过这样的代码找到了:

var th = $("#txtmin").parent();

我怎样才能做到这一点?

4

2 回答 2

4

你可以这样做:

$("#txtmin").closest('th').index();
于 2013-06-16T06:04:56.113 回答
1
$("#txtmin").parent().index();
于 2013-06-16T06:05:44.690 回答