Skip to content

使用原生js给一个按钮绑定两个onclick事件

Posted on:2021年9月25日 at 19:05
//事件监听 绑定多个事件
var btn = document.getElementById("btn");

btn.addEventListener("click", hello1);
btn.addEventListener("click", hello2);

function hello1() {
  alert("hello 1");
}
function hello2() {
  alert("hello 2");
}
原文转自:https://fe.ecool.fun/topic/b4137265-8ebe-4fc8-be75-8dfaf125af6c