我正在尝试从 javascript 中的函数更改 td 的“onclick”值。我已经尝试了所有我能想到的东西,我已经在互联网上搜索了它但没有任何效果,除了下面的这段代码,但它的问题是它正在执行我想要的 onclick 值而不是改变它.
<div align="center" id="bodyC">
<table width="800" height="410">
<td class="bodyCC">
<table id="MYtable" class="MYtable" border="0" width="100%" height="100%" cellpadding="50">
<td id="one" class="one" onclick=""></td>
<td id="two" class="two" onclick=""></td>
<td id="three" class="three" onclick=""></td>
</table>
</td>
</table>
</div>
function download()
{
<!-- this function is called when the "Download" button on the website's menu is pressed, and is soppused to change the "body" table so when the sells are clicked an alert will pop.-->
document.getElementById('one').onclick=alert("A..!");
document.getElementById('two').onclick=alert("B..!");
document.getElementById('three').onclick=alert("C..!");
}
有什么帮助吗?
ps没有错误。