用JavaScript当用鼠标勾选一个CHECKBOX时,表格中对应的一行背景色变为黄色,文字字体变为红色粗体

JavaScript显示... JavaScript 显示 展开
 我来答
撒白风05F
2009-07-17 · TA获得超过1010个赞
知道小有建树答主
回答量:735
采纳率:0%
帮助的人:513万
展开全部
<table border="1">
<tr><td><input type="checkbox"></td><td>1111111</td></tr>
<tr><td><input type="checkbox"></td><td>2222222</td></tr>
<tr><td><input type="checkbox"></td><td>3333333</td></tr>
<tr><td><input type="checkbox"></td><td>4444444</td></tr>
</table>
<script>
var chkBoxs = document.getElementsByTagName("input");
for(var i=0;i<chkBoxs.length;i++){
chkBoxs[i].onclick=function(){
tdText = this.parentNode.parentNode.childNodes[1];
if(this.checked){
tdText.style.fontWeight = "bold";
tdText.style.color = "red";
tdText.style.background = "yellow";
}else{
tdText.style.fontWeight = "normal";
tdText.style.color = "black";
tdText.style.background = "white";
}
};
}
</script>
百度网友5476a41
2009-07-17 · TA获得超过883个赞
知道小有建树答主
回答量:1251
采纳率:0%
帮助的人:695万
展开全部
<!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=gb2312" />
<title>翔</title>
<script language="javascript">
function change(){
if(document.getElementById("changes").checked==true){
document.getElementById("change").style.backgroundColor="#0000FF";
document.getElementById("change").style.fontWeight="bold";
}else if(document.getElementById("changes").checked==false){ //点击取消的时候叫他恢复样式
document.getElementById("change").style.backgroundColor="#ffffff";
document.getElementById("change").style.fontWeight="normal";
}
}
</script>
</head>
<body>
<input type="checkbox" id="changes" onclick="change()" />
<table border="1">
<tr>
<td id="change">哈哈,样式变了哦</td>
</tr>
</table>
</body>
</html>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
帐号已注销
2009-07-17 · TA获得超过266个赞
知道小有建树答主
回答量:488
采纳率:0%
帮助的人:252万
展开全部
document.getElementById("test").stlyle.xxxx = xxxx
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式