我創建幻燈片,但我需要在點擊next
或prev
按鈕後加載其他圖片。如何更改jQuery鏈接中的數字?
例如:
<div class="photolist-photo" style="background-image: url('/site/img/100/1.jpg')">
<a class="left carousel-control" data-slide="prev" href="#myCarousel" role="button">
<span aria-hidden="true" class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" data-slide="next" href="#myCarousel" role="button">
<span aria-hidden="true" class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
我只需要在style="background-image: url('/site/img/100/1.jpg')"
改變1.jpg
到2.jpg
點擊next
按鈕後。
如何獲得1
並更改爲2
在url中?
你有兩個以上的圖像或僅有1和2? –
你有什麼嘗試?您將需要使用javascript/JQuery設置整個「樣式」屬性。所以你應該跟蹤當前正在查看的號碼,所以你可以調整它並創建正確的路徑,每個按鈕點擊 – musefan
如果你改變什麼都不會發生。因爲圖片需要頁面加載才能顯示 –