JavaScript中通过什么控制Button的大小及颜色?

 我来答
匿名用户
推荐于2018-04-13
展开全部
其实很简单。就是对HTML里面BUTTON的属性的了解,还有利用JavaScript控制button属性以及赋值。
上面的朋友用document.all("button1"),我并不推荐。虽然这是可以面向IE4兼容,但是我更推荐使用标准的DOM取得button的对象。写了一个特简单的小例子,如下:

<html>
<head>
<title>test</title>
<script>

function $(id){

return document.getElementById(id) || document.all[id];
}

window.onload = function(){
var bChecked = false;
var oldBtStyle = $("buttonId").style;
$("buttonId").onclick = function(){
if(!bChecked){
this.style.color = "red";
this.style.fontSize = 24;
this.style.backgroundColor = "yellow";
this.style.height = 120;
this.style.width = 120;
bChecked = true;
}else{
this.style.color = "black";
this.style.fontSize = 12;
this.style.backgroundColor = "silver";
this.style.height = 30;
this.style.width = 80;
bChecked = false;
}

}
};
</script>
</head>
<body>
<input type="button" id="buttonId" value="check me" />
</body>
</html>
匿名用户
2013-05-09
展开全部
document.all("button1").style.backgroundColor="#000000"
document.all("button1").style.height = "";
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
夫宇典奇正
2020-04-18 · TA获得超过3898个赞
知道大有可为答主
回答量:3233
采纳率:25%
帮助的人:167万
展开全部
按钮上面的字用:
document.all("button1").style.color="#f90";
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式