1
.button {
background: transparent url("/assets/LoD-Button-Normal.png") no-repeat bottom right;
width: 110px;
height: 30px;
display: block;
background-position: bottom right;
text-align:center;
}
.button_click {
background: transparent url("/assets/LoD-Button-Click.png") no-repeat bottom right;
width: 110px;
height: 30px;
display: block;
background-position: bottom right;
}
$(".button").click(function(){
$(this).removeClass("button").addClass("button_click");
})
<a class="button" href="/link"> Button </a>
當我點擊按鈕。它改變了Firefox的背景圖像,但它不適用於Chrome。請幫助我背景圖像不能在鉻工作
作品在這個例子中:http://jsfiddle.net/3JpLy/。 Chrome中的控制檯中是否有任何錯誤日誌? (按F12把它帶到前面) –
http://jsfiddle.net/QAUaz/似乎正常工作... – floorish
會發生什麼?該類本身的變化是否工作,背景圖像是不是顯示(錯誤的Url?)還是類的變化不起作用? – Chris