javascript 设计3个按钮,当单机他们时分别使页面的背景色变成红,蓝和...

javascript设计3个按钮,当单机他们时分别使页面的背景色变成红,蓝和绿色急求,谢谢啦... javascript 设计3个按钮,当单机他们时分别使页面的背景色变成红,蓝和绿色 急求,谢谢啦 展开
 我来答
aAa9079
2012-05-09 · TA获得超过2289个赞
知道大有可为答主
回答量:1181
采纳率:100%
帮助的人:680万
展开全部
<html>
<head>
<script type="text/javascript">
window.onload=function()
{
var theBd=document.getElementById('bd');
var theBtns=document.getElementsByTagName('input');
var arr=['red','blue','green'];
var i;

for(i=0;i<theBtns.length;i++)
{
theBtns[i].index=i;
theBtns[i].onclick=function()
{
theBd.style.background=arr[this.index];
}
}
}
</script>
</head>
<body id="bd">
<input type="button" value="变红">
<input type="button" value="变蓝">
<input type="button" value="变绿">
</body>
</html>
你看这样行了吗?你新学Javascript吧,看样子,你要加油啦!!!
这个代码的内容,你可能要再学一些时候才看的懂,等你学到这些的时候,别忘了再上网看一下我写的,要不就白写啦!!!
_Timefiles
2012-05-09 · 超过52用户采纳过TA的回答
知道答主
回答量:237
采纳率:0%
帮助的人:169万
展开全部
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript" language="javascript">
function changecolor(color)
{
document.getElementById("bo").style.backgroundColor = color;
}
</script>
</head>
<body id="bo">
<input type="button" onclick="changecolor('red')" id="red">
<input type="button" onclick="changecolor('green')" id="green">
<input type="button" onclick="changecolor('blue')" id="blue">
</body>
</html>
应该没问题 没测试过哦
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式