我正在尝试获取具有已知类名的表行的id。我使用ajax获取数据
...
$.get("getall.php", function(data){
{
$('.tableholder').append(data);
$('tr:first-child').addClass("current");
然后给第一个子类当前的类,并且按预期工作。但是这会返回undefined
var idcell = $('table').find('tr.current').attr('id');
alert(idcell);
为什么它返回undefined?。
答案 0 :(得分:0)
我已经确定了问题。而不是做
$('tr:first-child').addClass("current");
我做了
$('tr:first-child').next().addClass("current");
现在它可以正常工作但当前的类应用于第二行。
修改
要将班级当前添加到我使用此
的第一行$('tr:eq(1)').addClass("current");