<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#a{
}
</style>
<script>
window.onload=function(){
var a=document.getElementById('head');
var dv=document.getElementById('dv');
var timer=null;
a.onmouseover=dv.onmousemove=function(){
clearTimeout(timer);
setTimeout(function(){
dv.style.display='block';
},300);
}
a.onmouseout=dv.onmouseout=function(){
clearTimeout(timer);
setTimeout(function(){
dv.style.display='none';
},300);
}
}
</script>
</head>
<body>
<div>
<a href="###" id="head">显示</a>
<div id="dv" style="display: none;">hello</div>
</div>
</body>
</html>