用原生js给一个按钮绑定两个点击事件
2019-07-10 本文已影响0人
好名字都让你们用了
------用事件监听事件来实现-----
<button>按钮</button>
<script>
var but = document.querySelector("button")
//添加监听事件
but.addEventListener("click",hello1)
but.addEventListener("click",hello2)
function hello1(){
alert("hello1")
}
function hello2(){
alert("hello2")
}
</script>