用javascript写onmouseover 事件,改变文本框字体颜色的代码怎么写啊?
3个回答
展开全部
这个不用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>
-------------------------------------
举个例子
<!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>
展开全部
如果是页面的:
<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=''就是了
<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=''就是了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<table>
<tr onmouseover="this.style.backgroundColor='#FF0000'" onmouseout="this.style.backgroundColor='#00FF00'">
<td>dddddddddddddddddddddddddddddddddddddddd</td>
</tr>
</table>
<tr onmouseover="this.style.backgroundColor='#FF0000'" onmouseout="this.style.backgroundColor='#00FF00'">
<td>dddddddddddddddddddddddddddddddddddddddd</td>
</tr>
</table>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询