|
瀏覽地址:http://www.healdream.com/upload/html/autoclick.html
復制代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
<script src="yahoo.js" type="text/Javascript"></script>
<script src="event.js" type="text/Javascript"></script>
</head>
<body>
<p><a >鼠標放在這個鏈接上1.5秒以上,將進入藍色理想網站,當然不到1.5秒就沒有效果</a></p>
<p><a >同理移到這里將進入我的blog</a></p>
<script type="text/Javascript">
var links=document.getElementsByTagName("a");
function return_obj(){
return source;
}
function auto_click(str){
window.location=str;
}
function mouseover_func(e){
source=event.srcElement;
start=setTimeout("auto_click('"+source+"')",1500);
}
function mouseout_func(e){
clearInterval(start);
}
YAHOO.util.Event.addListener(links,"mouseover",mouseover_func);
YAHOO.util.Event.addListener(links,"mouseout",mouseout_func);
</script>
</body>
</html>
JavaScript技術:懶就要懶到底――鼠標自動點擊(含時間判斷),轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。