私はこのコードを持っています:
$('.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'));
});