3つの画像をクリックしてみるだけです。ここでJavascriptで複数回背景画像を変更する
は私のコードです:
<script type="text/javascript">
function toggleImages(obj) {
if(obj.style.backgroundImage == "url('images/none.jpg')") {
obj.style.backgroundImage = "url('images/iPhoneImage-300x300.jpg')";
}
else if(obj.style.backgroundImage == "url('images/iPhoneImage-300x300.jpg')"){
obj.style.backgroundImage = "url('images/smartphoneImage-300x300.jpg')";
}
else if(obj.style.backgroundImage == "url('images/smartphoneImage-300x300.jpg')"){
obj.style.backgroundColor = "url('images/none.jpg')";
}
}
</script>
<div onclick="toggleImages(this);" id="arrow1" style="background-image:url(images/none.jpg); display:block; width:300px; height:300px"></div>
私は画像ではなく、私はそれがURLに関係していると思わせる背景画像なしで背景色を変更する場合、それは動作します。二重引用符で助けを
おかげ
代わりに、背景画像を更新するか、複数の画像で背景位置を使用してみてください。 –
これは機能しました!ありがとうGCyrillus! – ggntc