我有这个代码:
$('.errorbox').click(function(event){
console.log(event.hasClass('disabled'));
});
有人知道为什么事件没有返回我单击的项目的类吗?
我有这个代码:
$('.errorbox').click(function(event){
console.log(event.hasClass('disabled'));
});
有人知道为什么事件没有返回我单击的项目的类吗?
this
事件处理程序内部引用了处理程序注册到的 dom 元素,因此您可以检查
$('.errorbox').click(function(event){
console.log($(this).hasClass('disabled'));
});
$('.errorbox').click(function(event){
console.log(event.currentTarget.hasClass('disabled'));
});
$('.errorbox').click(function(event){
console.log($(event.target||event.srcElement).hasClass('disabled'));
});