<button id="btn" onclick="tex()">这是一个按钮</button>
1 第一添加事件方法
function tex(){
console.log("2222222222222");
}
2,第二种添加事件方法
var objbtn=document.getElementById("btn");
objbtn.onclick=function(e){
console.log(3333333333333);
}
3,第三种事件方法
var objbtn=document.getElementById("btn");
objbtn.addEventListener('click',funtion(){
console.log("555555555555555");
})
文章来自 www.96net.com.cn