html5,怎么设置点击button时,botton改变背景图片?
展开全部
很简单的,只需要对按钮添加一个单击事件就可以啊。
<style type="text/css">
input{
background-color: pink;
}
</style>
<script language="javascript" type="text/javascript">
<!--
function f1(e){
e.style.backgroundColor = "blue";
}
//-->
</script>
</head>
<body>
<input type="button" value="改变" onclick="f1(this)"/>
</body>
<style type="text/css">
input{
background-color: pink;
}
</style>
<script language="javascript" type="text/javascript">
<!--
function f1(e){
e.style.backgroundColor = "blue";
}
//-->
</script>
</head>
<body>
<input type="button" value="改变" onclick="f1(this)"/>
</body>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |