单击页面时是否可以更改html页面的背景?
答案 0 :(得分:1)
是的,您所要做的就是应用一个更改click事件背景的css类,如果您能提供代码片段,我可以帮助您实现这一目标。
答案 1 :(得分:1)
这样的事情:
<html>
<head>
<title>Javascript Change Div Background Image</title>
<style type="text/css">
#div1 {
width:100px;
height:30px;
background-image:url(images/blue.gif);
}
p {
font-family:Verdana;
font-weight:bold;
font-size:11px
}
</style>
<script language="javascript" type="text/javascript">
function changeDivImage()
{
var imgPath = new String();
imgPath = document.getElementById("div1").style.backgroundImage;
if(imgPath == "url(images/blue.gif)" || imgPath == "")
{
document.getElementById("div1").style.backgroundImage = "url(images/green.gif)";
}
else
{
document.getElementById("div1").style.backgroundImage = "url(images/blue.gif)";
}
}
</script>
</head>
<body>
<center>
<p>
This Javascript Example will change the background image of<br />
HTML Div Tag onclick event.
</p>
<div id="div1">
</div>
<br />
<input type="button" value="Change Background Image" onclick="changeDivImage()" />
</center>
</body>
</html>
但是如果你使用jQuery,它会更容易做到!如果你使用的是jQuery,只需编辑你的问题
$(function(){
$("input").click(function(){
$("body").css("background","url('otherimg.jpg')");
});
});
答案 2 :(得分:1)
$(function(){
$("input").click(function(){
$("body").css({background-image:"url('imageName.gif')"});
});
});