0
試圖交換兩個圖像取決於用戶點擊。不能得到jQuery的切換功能工作
所以它應該隱藏用戶剛剛點擊過的圖像並顯示隱藏的圖像。
必須在這裏簡單的東西錯了......只要您指定的處理程序上.ready()
<!-- toggle for contrast buttons -->
<script type=text/javascript>
$("a.contrast-button").click(function() {
$("a.contrast-button").toggle();
});
</script>
<div class="span-16 last" id="access-controls">
<a class="contrast-button" id="switchDark" href="#"><img src="/static/images/contrast-dark.png" /></a>
<a class="contrast-button" id="switchRed" style="display:none;" href="#" ><img src="/static/images/contrast-light.png" /></a>
<a class="access-nav" href="#">contrast:</a>
</div>
我已經在小提琴中工作,但在實際頁面中沒有任何東西。我如何解決這個問題?我知道我打開螢火蟲,但不知道我需要做什麼。 – bytejunkie
剛剛看到您的編輯。我已經把js移到了頁腳,在/ body標籤之前,它仍然沒有運行。 – bytejunkie
@shofty:首先使用瀏覽器的開發人員工具查找控制檯中的錯誤。如果沒有錯誤,那麼在你沒有發佈的代碼中肯定會出現一些問題。 – user113716