最佳答案
试着理解 jQuery”。“ not ()”函数,并遇到问题。我希望父 div 是“可单击的”,但是如果用户单击子元素,则不会调用该脚本。
$(this).not(children()).click(function(){
$(".example").fadeOut("fast");
});
Html:
<div class="example">
<div>
<p>This content is not affected by clicks.</p>
</div>
</div>