2个回答
展开全部
鼠标移入移出是mouseover和mouseout:
document.querySelector('#a').addEventListener('mouseover',function(){alert('为什么要移入呀?')});
document.querySelector('#a').addEventListener('mouseout',function(){alert('移入了就不要移出去了嘛..')});
(例子的id=a)
更多追问追答
追问
是直接mouseover还是onmouseover?
追答
mouseover是指鼠标移入,addEventListener是不需要加前缀on的,但是单独例如:
document.documentElement.onmouseover = function(){
/* Code */
}
是需要的,这个同其他的事件都是一样的
展开全部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<style type="text/css">
.testDiv{
height:200px;
width:200px;
background-color:green;
}
</style>
<script type="text/javascript">
function MouseOver(obj)
{
obj.style.backgroundColor = "red";
}
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<style type="text/css">
.testDiv{
height:200px;
width:200px;
background-color:green;
}
</style>
<script type="text/javascript">
function MouseOver(obj)
{
obj.style.backgroundColor = "red";
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询