ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> #box{ width: 200px; height: 500px; background: dodgerblue; margin: 30px auto; } </style> </head> <body> <div id="box"></div> <script src="jquery-1.11.3.min.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> $("#box").mouseenter(function(){ timer = setTimeout(function(){ alert('hello world'); },200) }) $("#box").mouseleave(function(){ clearTimeout(timer); }) </script> </body> </html>