直接加里面就好了。建议:.append('')用单引号比较好
<script>obj = Mytd // 你的td id 或者 索引 引用
obj.onclick = function (){
alert('a')
}
</script>
/------------------------- 代码 -----------------*/
<table>
<tr>
<td id='Mytd'>单击我</td>
</tr>
</table>
<script>
obj = Mytd // 你的td id 或者 索引 引用
obj.onclick = function (){
alert('a')
}
</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)