小時的搜索,仍然沒有答案我可以理解爲這一個:我試圖添加一個鏈接,其href變化取決於選擇一個旋轉木馬中的圖像(即選擇一個圖像和然後底部的鏈接改變)。顯示圖像,然後更改鏈接使用jquery
通過使用類不透明織物改變當前圖像顯示的不透明度挑選currrent圖像:
$('#current').ready(function() {
$("#carousel-2 img").click(function() {
$("#current img").removeClass("opaque-fabric");
var imageToShow = $(this).attr("id").replace("for-", "");
$("#current #"+imageToShow).addClass("opaque-fabric");
$("#carousel-2 img").removeClass("selected-fabric");
$(this).addClass("selected-fabric");
});
});
然後改變在href的端部中的「選擇按鈕」錨點鏈接我頁:
$('.choose-button').ready(function() {
$("#carousel-2 img").click(function() {
var button = $(this).attr('class');
var currenthref = $(".choose-button").attr('href');
$(".choose-button").attr('href', currenthref + button);
});
});
圖像顯示部分工作,但我似乎無法追加在按鈕中的href。請幫助並慢慢說話(初學者)。
編輯:Here's what I'm working with,在測試服務器上。
你能發表一些HTML&CSS代碼嗎? – Maroshii 2012-03-07 22:52:57