gpt4 book ai didi

javascript - 改变 body 背景

转载 作者:太空宇宙 更新时间:2023-11-04 11:28:48 24 4
gpt4 key购买 nike

我想在单击按钮时更改 body 的背景图像。

我的 html 代码是

<body id = "body">

<input type = "button" id = "button" value = "Change Background" onclick = "Background_change()"></input>

</body>

我的CSS代码是

body {
background-image : url('20a.jpg');
font: 18px Arial ;
color : white;
}

Java 脚本

我尝试使用以下代码使用 JavaScript 函数更改图像

function Background_change()
{
var imager = document.getElementById("body").style.backgroundImage;
imager.style.backgroundImage = url("20a.jpg");
}

最佳答案

试试这个:

  1. 先获取body的变量
  2. 然后用'或“”给出图像链接。

function Background_change(){
var imager = document.getElementById("body");
imager.style.backgroundImage = "url(http://im.rediff.com/money/2013/may/06car5.jpg)";
}
<body id="body">
<input type="button" id="button" value="Change Background" onclick="Background_change()"></input>
</body>

关于javascript - 改变 body 背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32181025/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com