方式一:透過HTML標籤中的事件屬性進行繫結
<input type="button" onclick="on()" value="按鈕1"> <script> function on(){ alert("我被點選了!"); } </script>
方式二:透過DOM元素屬性繫結
`
<script>
document.getElementById("btn").onclick=funtion(){
alert("我被點選了!");
}
</script>
`
常見事件: