怎么做效果Button啊 就是点击button 变色
5个回答
展开全部
直接设置下button的js事件即可。
function test1(object,c_code){ //当点击button根据传递的值不同,改变相应的颜色
var parent=/^[A-Za-z]+$/;
var c = object.toUpperCase();
if(parent.test(object)) {
if(object!=c||c.length!=3){
document.getElementById(c_code).style.backgroundColor="#FF0000";
return fasle;
}else{
document.getElementById(c_code).style.backgroundColor="#FFFFFF";
return true;
}
}else{
document.getElementById(c_code).style.backgroundColor="#FF0000";
return fasle;
}
}
function test1(object,c_code){ //当点击button根据传递的值不同,改变相应的颜色
var parent=/^[A-Za-z]+$/;
var c = object.toUpperCase();
if(parent.test(object)) {
if(object!=c||c.length!=3){
document.getElementById(c_code).style.backgroundColor="#FF0000";
return fasle;
}else{
document.getElementById(c_code).style.backgroundColor="#FFFFFF";
return true;
}
}else{
document.getElementById(c_code).style.backgroundColor="#FF0000";
return fasle;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
方法一:在响应函数中改变button的样式
方法二:使用js
方法二:使用js
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<input type ="button" id = "btnID" value = "点击" onclick="changeColor()">
function changeColor()
{
document.getElementById('btnID').style.backgroundcolor="red";
}
function changeColor()
{
document.getElementById('btnID').style.backgroundcolor="red";
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
....
document.getElementById('btnID').style.backgroundcolor="red";
document.getElementById('btnID').style.backgroundcolor="red";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询