Ⅰ jquery click 多次绑定,多次触发,怎么清除历史绑定事件
jQuery的click绑定有多种,解除绑定的方式也不相同
1)使用.bind()绑定事件,在1.7之后建议使用on,使用.unbind()解除绑定
2)使用.live()绑定事件,使用.die()解除绑定
3)使用.delegate()绑定事件,使用undelegate()解除
如果不确定使用的是那种方式绑定的,那就都用上:
.bind("click").die("click").undelegate("click")
Ⅱ js如何清除dom节点上的指定监听事件
亲。你第一个“nihao” 用的jquery绑定的。 你删除不能用原生的javascript删除。
可以$('#myBtn').unbind("click")
如果是原生的javascript,添专加事件用 addEventListener , attachEvent 和属removeEventListener,detachEvent 添加和删除。
Ⅲ vue.js怎样移除绑定的点击事件
vue.js移除绑定的点击事件的方法:
可以用 v-on 指令监听 DOM 事件:
<div id="example">
<button v-on:click="greet">Greet</button>
</div>
绑定了一个单击事件处理器到一个方法 greet。下面在 Vue 实例中定义这个方法:
var vm = new Vue({
el: '#example',
data: {
name: 'Vue.js'
},
// 在 `methods` 对象中定义方法
methods: {
greet: function (event) {
// 方法内 `this` 指向 vm
alert('Hello ' + this.name + '!')
// `event` 是原生 DOM 事件
alert(event.target.tagName)
}
}
})
// 也可以在 JavaScript 代码中调用方法
vm.greet() // -> 'Hello Vue.js!'
Ⅳ 如何通过js实现添加事件监听和移除事件监听
<!DOCTYPEhtml>
<html>
<headlang="en">
<metacharset="UTF-8">
<title></title>
<style>
.detail_info{
position:absolute;
display:none;
}
</style>
</head>
<body>
<inputtype="button"value="测试增加/移除监听"id="btn_bind"/>
<divstyle="position:relative;"id="box_content">
<inputtype="text"class="text"/>
<inputtype="text"class="text"/>
<!--浮动的详细信息-->
<divclass="detail_info"id="box_detail">
浮动提示信息
</div>
</div>
<scripttype="text/javascript">
(function(){
document.getElementById("btn_bind").addEventListener("click",function(){
if(this.bindStatue){
removeEvent();
}else{
bindEvent();
}
this.bindStatue=!this.bindStatue;
});
functionremoveEvent(){
varinputs=document.querySelectorAll(".text");
for(vari=0,length=inputs.length;i<length;i++){
inputs[i].removeEventListener("mousemove",showDetail);
inputs[i].removeEventListener("mouseout",hideDetail);
}
}
functionbindEvent(){
varinputs=document.querySelectorAll(".text");
for(vari=0,length=inputs.length;i<length;i++){
inputs[i].addEventListener("mousemove",showDetail);
inputs[i].addEventListener("mouseout",hideDetail);
}
}
functionshowDetail(e){
vare=e||window.event,
box=document.getElementById("box_detail"),
content=document.getElementById("box_content");
box.style.display="block";
box.style.top=e.clientY-content.offsetTop+"px";
box.style.left=e.clientX-content.offsetLeft+"px";
}
functionhideDetail(){
document.getElementById("box_detail").style.display="none";
}
})();
</script>
</body>
</html>
Ⅳ javascript移除onmouseover事件
$(document.getElementsByName("zifuname1")[0]).unbind("onmouseover");
$("[name='zifuname1']").unbind("onmouseover");
document.getElementsByName("zifuname1")[0].onmouseover=null;
Ⅵ js怎样清除点击事件
可以设置点击事件函数为空函数,即“onclick=function(){}”。
也可以移除事件指派或移除onclick事件属性,jquery当中可以用unbind方法移除。