标签: jquery jquery-selectors
如何找出课程index th的{{1}}值?
index
th
date
谢谢!
答案 0 :(得分:1)
使用 $("table").find("th").eq(0) 选择表格的第一个'th'。 Demo here
$("table").find("th").eq(0)
更新:现在我也更新了fiddle。
$("th").each(function(index) { if($(this).attr('class') == "date") { alert(index); } });