table里加的Button按钮单击事件怎么写
发布网友
发布时间:2022-04-26 09:56
我来回答
共2个回答
热心网友
时间:2022-06-27 02:03
<!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>
请复制上面代码试一试
热心网友
时间:2022-06-27 02:04
和平常写单击事件是一样的