jQuery - 检查索引值

时间:2012-03-06 11:29:21

标签: jquery jquery-selectors

如何找出课程index th的{​​{1}}值?

date

谢谢!

1 个答案:

答案 0 :(得分:1)

使用 $("table").find("th").eq(0) 选择表格的第一个'th'。 Demo here

更新:现在我也更新了fiddle

$("th").each(function(index) {
    if($(this).attr('class') == "date") {
        alert(index);
    }
});