网络新手。

我想知道用户是否单击了某个类的CSS的div

我的类的html元素如下

<div class="icon arrowIcon arrowLight tagIcon"></div>


我的事件目标值为

$(event.target): jQuery.fn.init[1]
   0: div.icon arrowIcon arrowLight tagIcon


和功能

($(event.target).find('.tagIcon').length > 0)


返回false。

任何想法?

最佳答案

find搜索子级。您应该检查您的元素是否具有所需的类:

$(event.target).hasClass("tagIcon")

10-04 22:10