0
我試圖得到一個錶行的ID與已知的類name.I正在使用AJAX獲取錶行的ID與partcular類
獲取數據...
$.get("getall.php", function(data){
{
$('.tableholder').append(data);
$('tr:first-child').addClass("current");
然後給第一子級電流和工作原理expected.However這將返回undefined
var idcell = $('table').find('tr.current').attr('id');
alert(idcell);
爲什麼會返回undefined?
你確定它有一個ID?你使用鉻工具檢查過嗎? – writeToBhuwan
我剛剛檢查過,它有點奇怪。它可以工作,如果我添加類像$('tr:first-child')。next()。addClass(「current」);但是會將該類添加到表格的第二行。 – Gandalf
你可以嘗試像'$('。tableholder')。append(data); ('。tableholder tr:first-child')。addClass(「current」);'然後'var idcell = $('。tableholder tr.current')。attr('id'); alert(idcell);'once .. –