我嘗試保持DIV 1隱若DIV 2是展示,而2區是隱藏的,當我想DIV 1所示。我嘗試這樣做在JavaScript,但它不是爲我工作:(隱藏一個div如果另一個顯示其他相反?
有人可以告訴我在哪裏我去錯了感謝
<script>
$(".profile-banner2").hide();
$(document).ready(function(){
if ($('.infobox-profile').is(":visible")) {
$(".profile-banner2").hide();
} else if ($('.infobox-profile').is(":hidden")) {
$('.profile-banner2').show();
}
});
</script>
不應該第二個條件包括'$其中工程(」簡介-banner1" )。隱藏()'? – 2013-02-15 06:03:56
1)你需要一個像點擊左右的事件和2)不要把任何語句訪問Dom對象以外的document.ready 3)你需要切換 – mplungjan 2013-02-15 06:07:15