的ID在ID的productTable的表,我使用下面的jQuery代碼添加行:獲取動態創建
$('#productTable').html("");
for (var i = 0; i < result.count; i++)
{
$('#productTable').append('<tr id=' + result.productArray[i].productID + 'class="product"><td><a> '+result.productArray[i].productName+'</a></td></tr>');
}
和我使用的附加處理這些行:
$("#productTable").on("click","tr",function(event){
alert(this.id);
});
但我得到的ID是表格,而我想要被點擊的行的ID。
幫助
爲什麼要OP試試這個,有什麼區別? –
這可能工作(邊緣),但它創建的標記仍然無效 – adeneo