网页制作中 当鼠标放在button按钮上时 按钮颜色改变 如何实现?

 我来答
百度网友bbb4f305
高粉答主

2018-04-11 · 关注我不会让你失望
知道小有建树答主
回答量:238
采纳率:100%
帮助的人:11万
展开全部

插入代码<button onmouseover="this.style.backgroundColor='red';" onmouseout="this.style.backgroundColor='';" >button</button>即可实现。

Button 

鼠标上的一个活动片,用于激活一些功能。旧式的鼠标模型只有一个按钮;新式一般有两个或更多个按钮

【英】On a mouse, amovable piece that is pressed to activate some function. Older mouse models have only one button; newer modelstypically have two or more.

html标签

HTML <button> 标签

定义和用法

<button> 标签定义一个按钮。

在 button 元素内部,您可以放置内容,比如文本或图像。这是该元素与使用 input 元素创建的按钮之间的不同之处。

<button> 控件 与 <input type="button"> 相比,提供了更为强大的功能和更丰富的内容。<button> 与 </button> 标签之间的所有内容都是按钮的内容,其中包括任何可接受的正文内容,比如文本或多媒体内容。

例如,我们可以在按钮中包括一个图像和相关的文本,用它们在按钮中创建一个吸引人的标记图像。

唯一禁止使用的元素是图像映射,因为它对鼠标和键盘敏感的动作会干扰表单按钮的行为。

请始终为按钮规定 type 属性。Internet Explorer 的默认类型是 "button",而其他浏览器中(包括 W3C 规范)的默认值是 "submit"。

实例

<html>

<head>

<script type="text/javascript">

function whichButton(event)

{

if (event.button==2)

{

alert"You clicked the right mouse button!")

}

else

{

alert"You clicked the left mouse button!")

}

}

</script>

</head>

<body "whichButton(event)">

<p>Click in the document. An alert box will

alert which mouse button you clicked.</p>

</body>

</html>

闹沸吓111
2014-06-25 · 超过69用户采纳过TA的回答
知道答主
回答量:118
采纳率:0%
帮助的人:150万
展开全部
<button onmouseover="this.style.backgroundColor='red';" onmouseout="this.style.backgroundColor='';" >button</button>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
米神Ing园竟245
2014-06-25 · TA获得超过182个赞
知道答主
回答量:123
采纳率:100%
帮助的人:59.1万
展开全部
使用javascript控制 <script TYPE="text/javascript"> <!-- function change_bgcolor(val,bg){ document.getElementById(val).style.backgroundColor= bg; } //--> </script> <input type="reset" value=" 测试变色 id="test" onmouseover="change_bgcolor('test','#900')" />
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式