gpt4 book ai didi

javascript - 将 addEventListener 添加到单击的表格单元格以更改颜色

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

我正在创建一个包含三列和多行的动态表。我希望能够单击每行中的最后一个单元格并选择显示特定颜色的行。我正在尝试这样做,并确保如果已经选择了另一个单元格,它将取消选择。我有一些问题不确定到底该怎么做。我可以创建一个有效的 onclick 警报消息,但是 bg 颜色没有成功。任何建议都是有帮助的。函数 createCell 应该是解决这个问题的地方。

<html>
<br/><br/></p>
<table id="my_table" align="center" cellspacing="0" cellpadding="0" border="0">
<tr>
<td>Name</td>
<td>Age</td>
<td>Sex</td>
</tr>

</table>
<p></center></p>
<script type="text/javascript" language="javascript">

function appendRow(){


var names = ["Paul", "Mike", "Linda"];
var ages = ["16", "23", "44"];
var male_female = ["M", "M", "F"];
var tbl = document.getElementById('my_table'); // table reference
// append table row
var id;
var z=1;
for(k=0;k<names.length;k++){
var row = tbl.insertRow(tbl.rows.length);


var j = tbl.rows.length - 2;
for (var i=0;i<tbl.rows[0].cells.length;i++) {
id=z++;
var cell_text = '';
if (i == 0) {
cell_text = names[j];
} else if (i == 1) {
cell_text = ages[j];
} else if (i == 2) {
cell_text = male_female[j];
}
createCell(id, row.insertCell(i), cell_text, 'row');

}


}


}

function createCell(id, cell, text, style){

var div = document.createElement('div'); // create DIV element

var txt = document.createTextNode(text); // create text node
if(id % 3 == 0)
{
cell.setAttribute('onclick', 'alert("hello")'); //for testing purposes
cell.addEventListener("click", clickCell, false);
}
div.appendChild(txt); // append text node to the DIV
div.setAttribute('class', style); // set DIV class attribute
div.setAttribute('className', style); // set DIV class attribute for IE (?!)
cell.appendChild(div); // append DIV to the table cell
}

function clickCell()
{
if(e)
e.setAttribute("bgColor","purple");

if(e != this){
e = this;
e.setAttribute("bgColor","blue");
}else{
e = null;
}
}





</script>
<BODY onload="appendRow()">

<style>
table#my_table{border-collapse:collapse;}
table#my_table td{width:50px;height:27px;border:1px solid #D3D3D3;font-size:10pt;text-align:center;padding:0;}
.append_row{background-color:#FFD6D6;border:1px #ccc solid;}
</style>
</body>
</html>

最佳答案

clickCell 方法修改为:

function clickCell(e) {
// clear the background of all rows
var rows = document.getElementById('my_table').rows;
for(var i = 0; i < rows.length; i++) {
rows[i].style.backgroundColor = '';
}
// set background of clicked row
this.style.backgroundColor = 'purple';
}

查看 example .

关于javascript - 将 addEventListener 添加到单击的表格单元格以更改颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3740650/

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