以前项目做得选择门店是鼠标移动经过门店,下面直接该门店信息。用户选择门店时候鼠标移动,用onmouseover体验效果不好
遂想到用setInterval()方法。HTML DOM setInterval() 方法
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title></title> 5 <script type="text/javascript"> 6 function show() { 7 alert("延时加载事件"); 8 } 9 </script> 10 </head> 11 <body> 12 <a href="#" onmouseover="ys=window.setInterval('show()',2000)" onmouseout="window.clearInterval(ys)">鼠标经过或者停留触发事件</a> 13 </body> 14 </html>