table里加的Button按钮单击事件怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了table里加的Button按钮单击事件怎么写相关的知识,希望对你有一定的参考价值。
<!doctype html><html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body>
<table border="" cellspacing="" cellpadding="">
<tr><th>Header</th></tr>
<tr>
<td>
<input type="button" id="btn" value="按钮" />
</td>
</tr>
</table>
<script type="text/javascript">
document.getElementById("btn").onclick = function()
alert("1"); //给按钮添加点击事件
</script>
</body>
</html>
请复制上面代码试一试
参考技术A 和平常写单击事件是一样的以上是关于table里加的Button按钮单击事件怎么写的主要内容,如果未能解决你的问题,请参考以下文章
c#自动生成的控件怎么添加双击事件,是双击事件不是单击 i++; Button b =