我想添加另一个按钮,所以我总共有 3 个按钮而不是 2 个。我该怎么做?我尝试添加产品支架 3,但如果我先单击按钮 1,然后单击按钮 3,则两个按钮都具有相同的背景图像。
预览: http: //gyazo.com/6698586765626a57405f9232baaaf61f.gif
新代码(不起作用):
$(document).ready(function(){$(".theImage img").click(function(){
var a=$(this).parent().attr("id")=="product-holder1"?"product-holder2"?"product-holder3":"product-holder1";
console.log(a);
$(this).fadeOut();
$("#"+a+" img").fadeIn();
});
});
我有 3 个按钮,当他们单击其中一个按钮时,它会更改图像。因此,如果用户单击按钮 1,它会更改图像。是现在单击按钮 2 以防他想选择这一个按钮 1 图像恢复正常。
网站:http ://productsgiveaway.com/iphone5s/
我会很感激一些帮助。
旧代码Javascript:
$(document).ready(function () {
$(".theImage img").click(function () {
var a = $(this).parent().attr("id") == "product-holder1" ? "product-holder2" : "product-holder1";
console.log(a);
$(this).fadeOut();
$("#" + a + " img").fadeIn()
})
})