您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)jquery查看元素是否綁定事件的方法的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
jquery查看元素是否綁定事件的方法:1、以前版本可以使用【obj.data('event'); 】方法;2、JQuery1.8版本取消了【obj.data】方法,改為【$._data】方法。
jquery查看元素是否綁定事件的方法:
On previous versions, you could call it like for other data :
obj.data('events');
In jQuery 1.8, this direct access was removed, so in recent versions you must call it like this :
$._data(obj[0],"events")
以前版本可以使用obj.data('event')
; JQuery1.8版本取消了obj.data方法,改為$._data
方法
注意:$._data(obj[0],"event")
中的obj[0],一定要加上數(shù)組[0]下標(biāo),否則會取不到數(shù)據(jù)
-------以下為舉例
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="/jquery-easyui-1.3.2/jquery-1.8.0.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function () { $("#btnTest").click(function () { alert('aa'); }); $("#btn").click(function () { //判斷是否綁定了click事件 var objEvt = $._data($("#btnTest")[0], "events"); if (objEvt && objEvt["click"]) { //console.info(objEvt["click"]); alert("bind click"); } else { alert("Not bind click"); } }); }); </script> </head> <body> <input type="button" id="btn" value="測試是否綁定事件" /> <input type="button" id="btnTest" value="被測試按鈕" /> </body> </html>
感謝各位的閱讀!關(guān)于jquery查看元素是否綁定事件的方法就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。