在JavaScript中如何将图片改变为按钮?

 我来答
匿名用户
2013-08-14
展开全部
这个是在将按钮转换成图片的形式。<style>
.input{ background:url(images/14.png)}
</style>
</head>
<body>
<form action="#" method="get">
<input id="inpt" type="text">
<input name="send" type="submit" class="input" id="send2" value=" 登陆 " onClick="return Check()" onFocus="this.blur()">
<input name="reset" type="reset" class="input" id="reset2" value=" 重置 " onFocus="this.blur()">
</form>
</body>
如果要鼠标移动改变背景颜色的话,加上如下js。<html>
<head>
<title>改变按钮背景</title>
<script type="text/javascript">
//移入时背景变绿
function change(over){
over.style.backgroundColor = 'green';
}
//移开时背景变红
function show(out){
out.style.backgroundColor = 'red';
}
</script>
</head>

<body >
<input id="button" type="button" name="Submit" value="移过来看看" onmouseover="change(this)" onmouseout="show(this)" />
</body>
</html>
匿名用户
2013-08-14
展开全部
不知道你弄那么复杂干嘛,直接用图片不行?function change(over){over.style.backgroundImg='';//这里不要背景图片,“背景图片”会把“背景颜色”遮住的你只能选择一种方式。
over.style.borderStyle='none';over.style.backgroundColor = 'green';
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
2013-08-14
展开全部
图片跟按钮相互切换吗
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式