CSS,JS看过来,按钮的问题

我想鼠标放上去时按钮背景变色,还有边框要变色(我不知道怎么弄)。帮我改下文字在按钮中要处在中间的位置。。<style>.p1{font-weight:bold;font-... 我想鼠标放上去时按钮背景变色,还有边框要变色(我不知道怎么弄)。帮我改下文字在按钮中要处在中间的位置。。

<style>

.p1{font-weight:bold;font-family:微软雅黑;font-size:13pt;color:white;background-color:#08affd;width:60px;height:30px;border:2px solid #76cdf6}

</style>

<script>
<!--

function change(color){
var el=event.srcElement
if (el.tagName=="INPUT" && el.type=="button")
event.srcElement.style.backgroundColor=color
}

function jumpto2(url){
window.location=url
}

//-->
</script>

<input type="button" value="评论 " class="p1" onMouseOut=this.style.background="#18fd88"

onMouseover="this.style.background='#08affd'"

onClick="jumpto2('http://sina.com.cn')">

</form>
展开
 我来答
昂子帆6I
2013-09-07 · TA获得超过6065个赞
知道大有可为答主
回答量:7904
采纳率:55%
帮助的人:1281万
展开全部

需要这么麻烦吗?下面是我随便写的一个,如果你非要用onmousemove和onmouseout来实现的话继续追问,我再帮你写一个!!!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>按钮</title>
<style type="text/css">
*{
    margin:0;
    padding:0;
    }
a{
    text-decoration:none;
    display:block;
    width:110px;
    height:34px;
    line-height:34px;
    text-align:center;
    background:#da251a;
    color:#fff;
    border:1px solid #9a0b02;
    }
a:hover{
    background:#ff6600;
    border:1px solid #000;
    }
</style>
</head>

<body>
<a href="http://www.baidu.com/" title="">点击</a>
</body>
</html>
2530830225
2013-09-06 · TA获得超过280个赞
知道小有建树答主
回答量:128
采纳率:0%
帮助的人:92.4万
展开全部
变色:
.p1:hover { background: red; border-color: #eee; color: #fff; }
具体颜色自己定义
文字居中:
.p1 { text-align: center; }
更多追问追答
追问
好像不行
追答
现在你的onmouseover起作用,所以那个hover的背景色就不起作用了
你用的什么浏览器?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式