用html设置两个按钮。分别是红蓝两种颜色。点击按钮来背景变成相应的颜色。求大神解答。在线等。很!
6个回答
展开全部
<html>
<head>
<title>demo page</title>
</head>
<body>
<input type="button" value="red" onclick ="set_bg_red();" />
<input type="button" value="blue" onclick = "set_bg_blue();"/>
<script>
function set_bg_red(){
document.bgColor="#ff0000;";
}
function set_bg_blue(){
document.bgColor="#0000ff;";
}
</script>
</body>
</html>
展开全部
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<script>
window.onload = function(){
var redBtn = document.getElementById('redBtn');
var blueBtn = document.getElementById('blueBtn');
redBtn.onclick = function(){
document.bgColor = 'red';
};
blueBtn.onclick = function(){
document.bgColor = 'blue';
};
};
</script>
</head>
<body>
<input type="button" id="redBtn" onclick="redBtn()" value="红色按钮">
<input type="button" id="blueBtn" onclick="blueBtn()" value="蓝色按钮">
</body>
</html>
代码保存为html文件格式, 直接用浏览器打开。
效果如下:
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script>
function onRed(){
document.body.style.backgroundColor="#FF0000";
}
function onBlue(){
document.body.style.backgroundColor="#0000FF";
}
</script>
</head>
<body>
<button onClick="onRed()">red</button>
<button onClick="onBlue()">blue</button>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<script>
function onRed(){
document.body.style.backgroundColor="#FF0000";
}
function onBlue(){
document.body.style.backgroundColor="#0000FF";
}
</script>
</head>
<body>
<button onClick="onRed()">red</button>
<button onClick="onBlue()">blue</button>
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个简单css()方法和delegate()就可以了,例如下面demo:
两个在html按钮的样式:<button type="button" class="color-info">蓝色按钮<botton> <button type="button" class="color-info">红色按钮<botton>
<script>
$(document).ready(function()[
$(document).delegate('.color-info',"click",function(){
$(this).css("这里写上你在css中标签定义的颜色即可");
});
});
</script>
有问题,再追问我
两个在html按钮的样式:<button type="button" class="color-info">蓝色按钮<botton> <button type="button" class="color-info">红色按钮<botton>
<script>
$(document).ready(function()[
$(document).delegate('.color-info',"click",function(){
$(this).css("这里写上你在css中标签定义的颜色即可");
});
});
</script>
有问题,再追问我
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<!DOCTYPE html>
<html>
<head>
<script>
var flag=false;
function copyText()
{
if(flag){
document.getElementById("button01").style.backgroundColor="blue";
}else{
document.getElementById("button01").style.backgroundColor="red";
}
flag=!flag
}
</script>
</head>
<body>
<button onclick="copyText()" id="button01">变颜色</button>
</body>
</html>
<html>
<head>
<script>
var flag=false;
function copyText()
{
if(flag){
document.getElementById("button01").style.backgroundColor="blue";
}else{
document.getElementById("button01").style.backgroundColor="red";
}
flag=!flag
}
</script>
</head>
<body>
<button onclick="copyText()" id="button01">变颜色</button>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
js jq ajax , 方法很多 ,写两个按钮 写个点击事件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询