Ⅰ 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方法移除。