Javascript:鼠标移过的事件
发布网友
发布时间:2022-05-01 18:50
我来回答
共2个回答
热心网友
时间:2022-04-20 01:56
鼠标移入移出是mouseover和mouseout:
document.querySelector('#a').addEventListener('mouseover',function(){alert('为什么要移入呀?')});
document.querySelector('#a').addEventListener('mouseout',function(){alert('移入了就不要移出去了嘛..')});
(例子的id=a)
热心网友
时间:2022-04-20 03:14
<!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";
}