jquery怎样查看元素可否绑定事件
jquery查看元素可否绑定事件的办法:1、之前版本可以使用【obj.data('event'); 】办法;2、JQuery1.8版本取消了【obj.data】办法,改为【$._data】办法。
本教程操纵环境:windows7系统、jquery1.8版本,该办法适用于所有品牌电脑。
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>
相关学习引荐:javascript视频教程
以上就是jquery怎样查看元素可否绑定事件的具体内容,更多请关注百分百源码网其它相关文章!