gpt4 book ai didi

javascript - 如何将 onclick 事件添加到表列?

转载 作者:行者123 更新时间:2023-11-30 10:26:46 26 4
gpt4 key购买 nike

我正在尝试使用 JavaScript 将 onclick 事件添加到表格列。例如,在第一列或第二列启用的 onclick 事件!以下函数适用于行,但我需要为特定列编辑此函数。

function addRowHandlers() {
var table = document.getElementById("tableId");
var rows = table.getElementsByTagName("tr");
for(i = 0; i < rows.length; i++) {
var currentRow = table.rows[i];
var createClickHandler = function (row) {
return function () {
var cell = row.getElementsByTagName("td")[0];
var id = cell.innerHTML;
alert("id:" + id);
};
};

currentRow.onclick = createClickHandler(currentRow);
}
}

最佳答案

试试这个工作解决方案。

function addRowHandlers() {
var table = document.getElementById("tableId");
var rows = table.getElementsByTagName("tr");

for (i = 0; i < rows.length; i++) {
var currentRow = table.rows[i];
currentRow.onclick = createClickHandler(currentRow);
}
}

function createClickHandler(row) {
return function() {
var cell = row.getElementsByTagName("td")[0];// if you put 0 here then it will return first column of this row
var id = cell.innerHTML;
alert("id:" + id);
};
}

addRowHandlers();

Working Demo

关于javascript - 如何将 onclick 事件添加到表列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19252233/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com