91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jquery解除事件綁定的方法

發布時間:2020-11-30 11:15:36 來源:億速云 閱讀:215 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關jquery解除事件綁定的方法,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

解除事件綁定的方法:1、使用unbind()和undelegate()方法,分別用于解除由bind()和delegate()方法所綁定的事件;2、使用off()方法,可以解除由on()、bind()和delegate()方法所綁定的事件。

解除事件綁定

在元素綁定事件之后,當在某個時刻不再需要該事件處理時,可以解除所綁定的事件。在jQuery中提供了unbind()和undelegate()方法,分別用于解除由bind()和delegate()方法所綁定的事件,通過參數指明需要解除的綁定事件即可。當方法沒有提供參數時,表示解除該元素所有的事件綁定。

在jQuery1.7+中提供了off()方法,用于解除由on()、bind()和delegate()方法所綁定的事件。off()方法與on完全相同。

示例:解除事件綁定

<!doctype html><html>
  <head>
	<meta charset="utf-8">
	<title>jQuery基本操作事件綁定</title>
	<script type="text/javascript" src="js/jquery-1.7.js"> </script>
   	<style type="text/css">
		p{width:200px;height:200px;border:1px solid #666;}
		#leftp{float:left; margin:0 auto;}
		#rightp{float:right;}
	</style>
  </head>
  <body>
  	<p id="leftp">
    	<input type="button" value="bind事件綁定" id="bindBtn"/>
        <input type="button" value="多事件綁定" id="manyBindBtn"/>
        <input type="button" value="delegate事件綁定" id="delegateBindBtn"/>
        <input type="button" value="解除事件綁定" id="removeBindBtn"/>
    </p>
    <p id="rightp">右側展示區</p>
	<script type="text/javascript">
		$(function(){
			//使用bind()方法綁定事件
			$("#manyBindBtn").bind({
				click:function(){$("#rightp").slideToggle();},
				mouseover:function(){$("#rightp").css("background-color","red");},
				mouseout:function(){$("#rightp").css("background-color","yellow");}
			});
			//使用delegate()方法綁定事件
			$(document).delegate("#delegateBindBtn","click",function(){
				$("#rightp").slideToggle();
			});
			//使用hover()方法綁定事件
			$("#rightp").hover(function(){
				$(this).css("background-color","gray");
			},function(){
				$(this).css("background-color","white");
			});
			//使用on()方法綁定事件
			$("#leftp").on("click","#bindBtn", function(){
				alert("使用bind()方法綁定事件處理");
			});
			//解除事件綁定
			$("#removeBindBtn").on("click",function(){
				//1.使用unbind()解除click事件綁定
				//$("#manyBindBtn").unbind("click");
				//2.使用unbind()解除該元素上的所有事件綁定
				//$("#manyBindBtn").unbind();
				//3.使用off()方法解除bind()方法的click事件綁定
				$("#manyBindBtn").off("click");
				//$(document).off("click","#manyBindBtn");
				//4.使用off()方法解除該元素上的所有事件綁
				//$("#manyBindBtn").off();				
				//5.使用undelegate()方法解除delegate()方法綁定事件
				//$(document).undelegate("#delegateBindBtn","click");
				//6.使用off()方法解除delegate()方法綁定事件
				$(document).off("click","#delegateBindBtn");
				//7.使用off()方法解除on()方法的click事件綁定
				$("#leftp").off("click","#bindBtn");
				//8.使用off()方法解除所有按鈕上的所有事件綁定
				$("input[type=button]").off();
			});
		});
	</script>
  </body></html>

jquery解除事件綁定的方法

關于jquery解除事件綁定的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴隆县| 浙江省| 东光县| 青州市| 五华县| 内乡县| 当阳市| 吉安县| 兴安盟| 汉沽区| 旬阳县| 宁化县| 新闻| 雷波县| 柳河县| 延边| 安泽县| 双流县| 乌苏市| 穆棱市| 石棉县| 金塔县| 曲周县| 玉环县| 临沭县| 常山县| 邢台县| 马公市| 吉隆县| 铜梁县| 定南县| 舟山市| 石景山区| 孝义市| 清水县| 凤山县| 谷城县| 沧州市| 施甸县| 连城县| 历史|