下面的javascript代码是用来改变页面背景的颜色,可单击按钮就是没有反应,请高手看下,谢谢!

<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>阶段4</title>
<script language="javascript" type="text/javascript">
function change(color){
if(color == "r")
{
document.bgcolor = "#FF0000";
}
else if(color == "b"){
document.bgcolor = "#0000FF";
}
else if(color == "g"){
document.bgcolor = "#00FF00";
}
}
</script>
</head>

<body>
<form id="form1" name="form1" method="post" action="">
<table width="400" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center">
<input type="button" name="button1" id="button1" value="不许碰我" onclick="change('b')" >
</div></td>
<td><div align="center">
<input type="button" name="button2" id="button2" value="警告你别碰我" onclick="change('r')" >
</div></td>
<td><div align="center">
<input type="button" name="button3" id="button3" value="给你点颜色看看" onclick="change('g')" >
</div></td>
</tr>
</table>
</form>
</body>
</html>
展开
 我来答
俺啥都知道
2009-11-12 · TA获得超过298个赞
知道小有建树答主
回答量:291
采纳率:0%
帮助的人:238万
展开全部
把所有的document.bgcolor = 都替换成
document.body.style.backgroundColor =
多浏览器下测试通过

问题出在如果你想这样做至少也得是document.body.color =
但是我这样测试不行 估计原因是你的页面使用的严格的HTML语法 就是XHMTL 大概不支持 所以只能更改BODY的STYLE属性了
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式