我需要检查某些事件是否已经绑定在元素上。
例如
$(".animate").click(function(){
alert('Here comes action');
});
和
$(".someOtherSelector").click(function(){
alert('some other action');
});
HTML
<a class="animate"></a>
<a class="someOtherSelector animate"></a>
在第二个函数中,我需要检查该元素上是否已经绑定了一个事件。如果是这样,它不应该执行alert('some other action');
。
我正在使用 jQuery 版本 1.10.1。