使用 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中文网其他相关文章!