您好,登录后才能下订单哦!
这篇文章给大家分享的是有关jquery查看元素是否绑定事件的方法的内容。小编觉得挺实用的,因此分享给大家做个参考。一起跟随小编过来看看吧。
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],一定要加上数组[0]下标,否则会取不到数据
-------以下为举例
<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>
感谢各位的阅读!关于jquery查看元素是否绑定事件的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。