我有一个在 Ajax 调用上创建的表格行。我想关联一个 onlclick 事件。我无法从我正在遍历的数组中传递一个元素(根据下面显示的代码,它是 d[i])所以我无法在点击事件中获取数组元素
var d = $.parseJSON(data.codes);
for (var i = 0; i < d.length; i++) {
var currentRow = $('<tr>');
currentRow.append($('<td>').html(d[i].id));
currentRow.attr("class", "sourceCodeRow grid-row");
currentRow.append($('<td>').html(d[i].name));
currentRow.append($('<td>').html(d[i].description));
currentRow.click(function (f) {
//want to display name from d[i]
// alert(d[i].name);
});
$('#table-id').append(currentRow);
}