//事件监听 绑定多个事件
var btn = document.getElementById("btn");
btn.addEventListener("click", hello1);
btn.addEventListener("click", hello2);
function hello1() {
alert("hello 1");
}
function hello2() {
alert("hello 2");
}
使用原生js给一个按钮绑定两个onclick事件
Posted on:2021年9月25日 at 19:05