使用 JavaScript 更改 Div 的背景圖像
在 JavaScript 程式碼中,您使用了錯誤的語法來操作一個 div 元素。 el.url() 不是用於此目的的有效函數。以下是正確更改背景圖像的方法:
<code class="javascript">function chek_mark() { var backgroundImage = document.getElementById("a").style.backgroundImage; if (backgroundImage.includes("Black-Wallpaper.jpg")) { document.getElementById("a").style.backgroundImage = "url(cross1.png)"; // Replace with the new image path } else { document.getElementById("a").style.backgroundImage = "url(Black-Wallpaper.jpg)"; // Reset to the original image path } }</code>
使用此程式碼修改您的 chek_mark() 函數。當您按一下具有“ghor”類別的 div 元素時,它將在“Black-Wallpaper.jpg”和“cross1.png”之間切換背景映像。
以上是如何使用 JavaScript 切換 Div 的背景圖像?的詳細內容。更多資訊請關注PHP中文網其他相關文章!