var table = $("<table />").attr({id:'table1'});
var appenddata;
names = Object.keys(res);
var row = $('<tr />');
$(names).each(function (index, value) {
$(row).append("<th>" + value + "</th>");
});
$(table).append(row);
$(Result).each(function (index, value) {
var tr = $('<tr />').attr({});
$(names).each(function (i,iValue) {
$(tr).append("<td>" + value[names[i]]+"</td>");
});
$(table).append(tr);
});
$("#tab1").append(table);
enter image description here如何在表格的行添加事件處理
我有這個表,我想在行添加click事件,就像如果用戶點擊該行的任何地方,它顯示一個警告。
的[添加一個onclick事件到錶行]可能的複製(https://stackoverflow.com/questions/1207939/adding-an-的onclick事件到一個錶行) –