当前位置: 代码迷 >> JavaScript >> onMouseOver 文字变色解决方法
  详细解决方案

onMouseOver 文字变色解决方法

热度:605   发布时间:2012-03-15 11:50:38.0
onMouseOver 文字变色
当鼠标移动到一个层div1时,div1里面有div2,div2里面的文字变白色,怎么写代码,谢谢啊!

------解决方案--------------------
HTML也不贴出。参考下面:
HTML code

<div id="demo" style="width:100px;height:100px;border:1px solid blue;background:red;">
      sssssssssssssss
        <div id="inner">test hello</div>
</div>
<script>
   document.getElementById('demo').onmouseover=function(){
          document.getElementById('inner').style.color='white';
   }
   document.getElementById('demo').onmouseout=function(){
          document.getElementById('inner').style.color='';
   }
</script>

------解决方案--------------------
document.getElementById('inner').style.color='white';这行下面加上:
this.style.background='url(image/01.jpg)'; //确保路径正确。

鼠标移开换回原来背景。
this.style.background='red';
------解决方案--------------------
我用jquery实现的 你可以看看啊 
<!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>
<title></title>

<script src="js/jquery-1.4.1-vsdoc.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#demo").mouseover(function() {
$("#inner").css("background-color", "white");
});
$("#demo").mouseout(function() {
$("#inner").css("background-color", "");
});
})

</script>

</head>
<body>
<div id="demo" style="width:100px;height:100px;border:1px solid blue;background:red;">
sssssssssssssss
<div id="inner">test hello</div>
</div>
</body>
</html>

希望对你有所帮助。
  相关解决方案