Javascript:鼠标移过的事件

如题目,鼠标移入的事件是什么

鼠标移入移出是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 */
}

是需要的,这个同其他的事件都是一样的

mouseover是指鼠标移入,addEventListener是不需要加前缀on的,但是单独例如:

document.documentElement.onmouseover = function(){
    /* Code */
}

是需要的,这个同其他的事件都是一样的

温馨提示:答案为网友推荐,仅供参考
第1个回答  2018-03-17
<!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";
}
相似回答