テーブルセルをクリックするたびにその背景を表示するアラートポップアップを表示したいと考えています。背景色を取得する方法を見つけたり、理解したりできないようです。
私の表のセルは次のようになります。
<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;
}
どんな助けでも大歓迎です!!