<html>
<head>
<title>鼠标事件的操作</title>
</head>
<body>
<img src="good.jpg" id="edison" alt="Edison" onmousemove="moveover(edison)">
<br>
<a>漂亮的图片</a>
<script>
function erase(object){
object.style.visibility="hidden";
}
function moveover(object){
setTimeout("erase(object)",1000);
}
</script>
</body>
</html>