2012-06-20 184 views

回答

13
$(".parent").click(function(e) { 
    if (e.target == this) { 
     $(this).hide(); 
    } 
});​ 

DEMO:http://jsfiddle.net/Bt5HA/4/

+0

啊!非常簡單,謝謝。 –

+0

@ChristianBenincasa歡迎您:) – VisioN

+0

http://stackoverflow.com/a/11124083/601179 – gdoron

0

更改爲:

$('.child a').click(function(e) { 
    $(this).parent('.child').hide(); 
});​ 
+0

,只有當孩子點擊的作品。如果父母被點擊會發生什麼? – j08691

0

嘗試這個

$('#child').click(function(event) { 
event.stopPropagation(); 
alert('You clicked Child'); 
}); 


$('#parent').click(function() { 
alert('You clicked on Parent'); 
}); 

您可以檢查在這裏工作 http://jsfiddle.net/VnHGh/24/

相關問題