請幫忙!我一直在試圖弄清楚如何在已經打開的時候關閉一個特定的DIV。hide/show toggle div
例如,請查看:http://jsfiddle.net/WGRvw/
如果我點擊BC 的DIV應該會出現,但如果我再次點擊它時,DIV應該會消失,但我無法弄清楚如何讓它消失。另外,我只希望一次出現一個DIV。
我試着做一個else:
$(function(){ $(document).ready(function() { $(".prov").click(function(){ $(".clearfix").hide(); });
$('#BC').hide();
$('#BC-show').click(function() {
if($('#BC').toggle('slow')) {
return false;
}
else {
$('#BC').hide();
}
});
$('#AB').hide();
$('#AB-show').click(function() {
if($('#AB').toggle('slow')) {
return false;
}
else {
$('#AB').hide();
}
});
});
});
});
您的幫助表示讚賞。
謝謝!
修正在這裏:http://jsfiddle.net/WGRvw/141/ – ilivewithian