JS鼠标经过

Posted 枚齐元子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS鼠标经过相关的知识,希望对你有一定的参考价值。

 

 

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<script>
function writeText(txt){
    document.getElementById("desc").innerHTML=txt;
}
</script>
</head>

<body>
<img src ="planets.gif" width ="145" height ="126" alt="Planets" usemap="#planetmap" />
<map name="planetmap">
<area shape ="rect" coords ="0,0,82,126"  onmouseover="writeText(‘太阳和气体巨星类似木星是太阳系中最大的物体。‘)"  href ="sun.htm" target ="_blank" alt="Sun" />
<area shape ="circle" coords ="90,58,3"  onmouseover="writeText(‘从地球上很难研究水星,因为它太接近太阳。‘)"  href ="mercur.htm" target ="_blank" alt="Mercury" />
<area shape ="circle" coords ="124,58,8"  onmouseover="writeText(‘至到1960年,金星经常被认为是地球的孪生妹妹,因为金星是最靠近我们的行星,并且两个行星有很多相似的特点。‘)" t‘)"  href ="venus.htm" target ="_blank" alt="Venus" />
</map>
<p id="desc">鼠标在太阳和星星上移动,可以看到不同的描述。</p>

</body>
</html>


















以上是关于JS鼠标经过的主要内容,如果未能解决你的问题,请参考以下文章

JS事件 鼠标经过事件(onmouseover)鼠标经过事件,当鼠标移到一个对象上时,该对象就触发onmouseover事件,并执行onmouseover事件调用的程序。

Animate.css+js实现鼠标经过动画效果

js实现鼠标滑过显示二级菜单

js怎么实现鼠标经过一个div,div自动向右边平滑缓慢的移动50px

求大神解答html问题鼠标经过和移开问题。

JS鼠标经过