J'utilise le balisage suivant et j'ai rencontré le même problème :
<ul class="nav">
<li><a href="abc.html">abc</a></li>
<li><a href="def.html">def</a></li>
</ul>
Ici, j'ai utilisé la logique suivante :
$(".nav > li").click(function(e){
if(e.target != this) return; // only continue if the target itself has been clicked
// this section only processes if the .nav > li itself is clicked.
alert("you clicked .nav > li, but not it's children");
});
Pour ce qui est de la question exacte, je peux imaginer que cela fonctionne comme suit :
$(".example").click(function(e){
if(e.target != this) return; // only continue if the target itself has been clicked
$(".example").fadeOut("fast");
});
ou bien sûr l'inverse :
$(".example").click(function(e){
if(e.target == this){ // only if the target itself has been clicked
$(".example").fadeOut("fast");
}
});
J'espère que cela vous aidera.