最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - $(e.target).hasClass() Not Working - Stack Overflow

programmeradmin0浏览0评论

I'm trying to run certain processes on mousedown anywhere in the document, but different ones depending on whether or not certain elements are clicked. The below code isn't working. Thanks for any help!

$(document).on('mousedown',function(e) {
    if (!$(e.target).hasClass('.item')) {
        console.log('item');
    } else {
        console.log('not item);
    }
});

I'm trying to run certain processes on mousedown anywhere in the document, but different ones depending on whether or not certain elements are clicked. The below code isn't working. Thanks for any help!

$(document).on('mousedown',function(e) {
    if (!$(e.target).hasClass('.item')) {
        console.log('item');
    } else {
        console.log('not item);
    }
});
Share Improve this question asked Dec 8, 2013 at 3:47 user3011922user3011922 1833 silver badges8 bronze badges 2
  • 3 .item is a selector for the item class name. Try !$(e.target).hasClass('item'). – Thibaud Colas Commented Dec 8, 2013 at 3:49
  • 1 What the hell am I thinking? Thanks. – user3011922 Commented Dec 8, 2013 at 3:51
Add a ment  | 

1 Answer 1

Reset to default 11

to hasClass() you should pass the class name, not class selector

$(document).on('mousedown',function(e) {
    if (!$(e.target).hasClass('item')) {
        console.log('item');
    } else {
        console.log('not item');
    }
});
发布评论

评论列表(0)

  1. 暂无评论