1.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<input type="button" value="按钮" id="button" onclick="test()" />
<script type="text/javascript">
function test(){
console.log("hello")
}
</script>
</body>
</html>
2.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<input type="button" value="按钮" id="button" />
<script type="text/javascript">
document.getElementById("button").onclick=function(){
console.log("hello");
}
</script>
</body>
</html>
3.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<input type="button" value="按钮" id="button" />
<script type="text/javascript">
document.getElementById("button").addEventListener("click",function(){
console.log("hello,小姐姐");
});
</script>
</body>
</html>