我想要弹出一个警报,每当我单击它时,它就会向我显示表格单元格的背景。我似乎无法找到或弄清楚如何获取背景颜色。
我的表格单元格如下所示:
<td id="s0" onclick="selectCell(event)">0</td>
我的 selectCell 函数如下所示:
function selectCell(e){
alert(e.target.backgroundColor); //this gives me 'undefined'
alert(e.target.bgcolor); //this gives me 'undefined'
alert(e.target.bgColor); //nothing shows up. i don't believe this is a valid property
//once i know i am properly grabbing the color i will do stuff with it here.
}
我的 CSS 看起来像这样:
#s0 {
border: 1px solid;
background-color: yellow;
}
任何帮助将不胜感激!!