用javascript写onmouseover 事件,改变文本框字体颜色的代码怎么写啊?

 我来答
百度网友32cdd9945
2008-05-12 · TA获得超过1374个赞
知道大有可为答主
回答量:2429
采纳率:100%
帮助的人:1931万
展开全部
这个不用javascript都可以啊,你设置一下 css的 hover属性就可以了。
-------------------------------------
举个例子
<!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" xml:lang="zh-CN" lang="zh-CN">

<head>
<style type="text/css">
<!--
#inputCtrl:hover {color:#ff0000;}
-->
</style>
</head>
<input type=text value="哈哈哈" id = "inputCtrl">
<div id=htmlText></div>

<html>
21tcy
2012-03-04 · TA获得超过888个赞
知道小有建树答主
回答量:471
采纳率:0%
帮助的人:248万
展开全部
如果是页面的:
<input id="test" type="button" value="test" onmouseover="this.style.backgroundColor='#daedf8'" onmouseout="this.style.backgroundColor='#ffffff'" />
如果是JS:
<input id="test2" type="button" value="test" onclick="change();" />
<script type="text/javascript">
function change(){
this.onmouseover=function(){this.style.backgroundColor='#daedf8';};
this.onmouseout=function(){this.style.backgroundColor='#ffffff';};
}
</script>
字体颜色类似,改成style.color=''就是了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友dc91b32
2008-05-12 · TA获得超过5650个赞
知道大有可为答主
回答量:5653
采纳率:0%
帮助的人:0
展开全部
<table>
<tr onmouseover="this.style.backgroundColor='#FF0000'" onmouseout="this.style.backgroundColor='#00FF00'">
<td>dddddddddddddddddddddddddddddddddddddddd</td>
</tr>
</table>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式