本文實例講述了jQuery unbind()方法使用方法。分享給大家參考,具體如下:
jQuery 中的 unbind() 方法是 bind() 方法的反向操作,從每一個匹配的元素中刪除綁定的事件。
語法結構:
unbind([type][, data]);
unbind([type][, data]);
unbind([type][, data]);
type是事件類型,data為將要移除的事件。具體說明如下:<script src="jquery.js" type="text/javascript"></script> <style> .info { background:#ffff66; } </style> <input type="button" id="btn" value="点击我" /> <input type="button" id="delAll" value="删除全部绑定函数" /> <input type="button" id="delFun2" value="删除第二个绑定函数" /><br /> <div class="info"></div> <script type="text/javascript"> $(document).ready(function(){ // 为id为btn的按钮添加绑定事件 $("#btn").bind('click', fun1=function(){ $(".info").append('<p>绑定函数1</p>'); }).bind('click', fun2=function(){ $(".info").append('<p>绑定函数2</p>'); }).bind('click', fun3=function(){ $(".info").append('<p>绑定函数3</p>'); }) $("#delAll").bind('click', function(){ $("#btn").unbind(); //删除全部绑定事件 }) $("#delFun2").bind('click', function(){ $("#btn").unbind('click', fun2); //删除第二个绑定函数 }) }) </script>2、如果提供了事件類型(type)作為參數,則只刪除該類型的綁定事件;
請看下面的舉例:
效果展示圖:更多關於jQuery事件相關內容有興趣的讀者可查看本站專題:《jQuery常見事件用法與技巧總結》 希望本文所述對大家jQuery程式設計有所幫助。