javascript点击按钮改变背景色的问题

刚入门javascript,遇到一个作业不太会做:一个4*4的表格里有16个按钮<button>,每个按钮都有一个文本比如red,black之类,如何写一个函数可以在点击... 刚入门javascript,遇到一个作业不太会做:
一个4*4的表格里有16个按钮<button>,每个按钮都有一个文本比如red,black之类,如何写一个函数可以在点击按钮时根据文本来改变网页背景色?。谢谢。
<table>
<tr>
<td><button type="button">Red</button></td>
<td><button type="button">Blue</button></td>
<td><button type="button">Green</button></td>
<td><button type="button">Yellow</button></td>
</tr>
....
....
....
</table>
展开
 我来答
百度网友2571d37bb
2015-10-17 · 知道合伙人软件行家
百度网友2571d37bb
知道合伙人软件行家
采纳数:1971 获赞数:7905
前端工程师

向TA提问 私信TA
展开全部

用js直接修改style的背景色就可以了,

下面是代码,仅供参考:

<script>
window.onload = function(){
var oBtn = document.getElementById('btn');
oBtn.onclick = function(){
this.style.backgroundColor = 'red';s
};
};
</script>
</head>

<body>
<input type="button" id="btn" value="click me" />
</body>
阳光上的桥
2009-02-03 · 知道合伙人软件行家
阳光上的桥
知道合伙人软件行家
采纳数:21423 获赞数:65813
网盘是个好东东,可以对话和传文件

向TA提问 私信TA
展开全部
<table>
<tr>
<td><button type="button" onClick="document.body.style.backgroundColor='red';">Red</button></td>
<td><button type="button" onClick="document.body.style.backgroundColor='blue';">Blue</button></td>
<td><button type="button" onClick="document.body.style.backgroundColor='green';">Green</button></td>
<td><button type="button" onClick="document.body.style.backgroundColor='yellow';">Yellow</button></td>
</tr>
</table>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Rex_zh
2009-02-03 · TA获得超过2594个赞
知道小有建树答主
回答量:271
采纳率:0%
帮助的人:357万
展开全部
<script type="text/javascript">
function chg(col){
document.body.style.backgroundColor = col;

}
</script>

<table>
<tr>
<td><button type="button" id="red" onclick="chg(this.id);">Red</button></td>
<td><button type="button" id="blue" onclick="chg(this.id);">Blue</button></td>
<td><button type="button" id="green" onclick="chg(this.id);">Green</button></td>
<td><button type="button" id="yellow" onclick="chg(this.id);">Yellow</button></td>
</tr>
....
....
....
</table>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式