下面代码的交换部分工作得很好,但重置部分是我遇到问题的地方。我想要发生的是,当您单击列表中的一张图像时,它们都会恢复为 _off 图像,然后您单击的图像会切换到 _over。
提前致谢。
// Reset
$('.show').attr('src').replace("_over","_off");
// Swap
if($(this).attr("class") == "show") {
this.src = this.src.replace("_off","_over");
} else {
this.src = this.src.replace("_over","_off");
}