我有以下代码可以正常工作:
$(document).on('click','.with-hidden-caption', function(){
if (window.matchMedia("(min-width: "+colum+")").matches || !$(this).parents(".my-wrapper").length) {
$(this).toggleClass('show-caption')
$(this).find('figcaption').slideToggle("fast");
}
});
现在我想找出在 .with-hidden-caption' 中单击的位置以切换类取决于单击的位置。换句话说:如果点击是在 newToolBar 它喊不运行。
这是我的HTML:
<figure class="with-hidden-caption">
<figcaption>Hello
<div class="newToolBar"> if here is clicked do something else but not $(this).toggleClass('show-caption') </div>
</figcaption>
</figure>
我怎么得到它。