html CSS如何设置按钮点下之后改变当前按钮的背景色
做了两个Button,怎么才能点击Button1的时候改变Button1的背景色,点击Button2的时候改变Button2的背景色,并且Button1恢复点击之前的背景...
做了两个Button,怎么才能点击Button1的时候改变Button1的背景色,点击Button2的时候改变Button2的背景色,并且Button1恢复点击之前的背景色。
代码:
<form onMouseOver="change('#FFFFFF')" onMouseOut="change('#434063')">
<input type="button" name="Button1" class="thisclass ha_bor btnwidth" value="北京" onMouseOver="this.style.color='#434063'"
onMouseOut="this.style.color='#FFFFFF'" onMouseDown="this.style.color='#434063'"
style="color:#FFFFFF; font-family:黑体; font-weight:bold; font-size:8px;" onclick=""></form>
<form onMouseOver="change('#FFFFFF')" onMouseOut="change('#434063')">
<input type="button" name="Button2" class="thisclass ha_bor btnwidth" value="成都" onMouseOver="this.style.color='#434063'"
onMouseOut="this.style.color='#FFFFFF'" onMouseDown="this.style.color='#434063'"
style="color:#FFFFFF; font-family:黑体; font-weight:bold; font-size:8px;"></form>
<style>
.thisclass{background-color:#434063}
.ha_bor{border:0px #434063 solid;}
.btnwidth{width:150px; outline: none; }
</style>
<script language="javascript">
function change(color){
var el=event.srcElement
if (el.tagName=="INPUT"&&el.type=="button")
event.srcElement.style.backgroundColor=color;
}
</script> 展开
代码:
<form onMouseOver="change('#FFFFFF')" onMouseOut="change('#434063')">
<input type="button" name="Button1" class="thisclass ha_bor btnwidth" value="北京" onMouseOver="this.style.color='#434063'"
onMouseOut="this.style.color='#FFFFFF'" onMouseDown="this.style.color='#434063'"
style="color:#FFFFFF; font-family:黑体; font-weight:bold; font-size:8px;" onclick=""></form>
<form onMouseOver="change('#FFFFFF')" onMouseOut="change('#434063')">
<input type="button" name="Button2" class="thisclass ha_bor btnwidth" value="成都" onMouseOver="this.style.color='#434063'"
onMouseOut="this.style.color='#FFFFFF'" onMouseDown="this.style.color='#434063'"
style="color:#FFFFFF; font-family:黑体; font-weight:bold; font-size:8px;"></form>
<style>
.thisclass{background-color:#434063}
.ha_bor{border:0px #434063 solid;}
.btnwidth{width:150px; outline: none; }
</style>
<script language="javascript">
function change(color){
var el=event.srcElement
if (el.tagName=="INPUT"&&el.type=="button")
event.srcElement.style.backgroundColor=color;
}
</script> 展开
1个回答
展开全部
<input id="btn" type="button" value="点击按钮" />
<script language="javascript" src="Scripts/jquery-1.4.1.min.js"></script>
<script language="javascript">
$(function () {
$("#btn").hover(function () { $(this).css("background-color", "Yellow"); }, function () { $(this).css("background-color", "red"); });
$("#btn").click(function () {
$(this).css("background-color", "Gray");
});
});
</script>
<script language="javascript" src="Scripts/jquery-1.4.1.min.js"></script>
<script language="javascript">
$(function () {
$("#btn").hover(function () { $(this).css("background-color", "Yellow"); }, function () { $(this).css("background-color", "red"); });
$("#btn").click(function () {
$(this).css("background-color", "Gray");
});
});
</script>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
博思aippt
2024-07-20 广告
2024-07-20 广告
作为深圳市博思云创科技有限公司的工作人员,对于Word文档生成PPT的操作,我们有以下建议:1. 使用另存为功能:在Word中编辑完文档后,点击文件->另存为,选择PowerPoint演示文稿(*.pptx)格式,即可将文档内容转换为PPT...
点击进入详情页
本回答由博思aippt提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询