一切都很好,除了一件事,我想要它,所以当你.show
已经看到类时,当你点击另一个#c-
div 时它会再次消失。
$('[id^="c-"]').each(function(i){
$this = $(this);
$(this).text(i);
$(this).on('click',function(){
$('.show').fadeIn().text(i);
event.stopPropagation();
});
})
$(document).on('click', function(){
$('.show').fadeOut();
});