浏览地址:http://www.healdream.com/upload/html/autoclick.html
复制代码 代码如下:
varlinks=document.getElementsByTagName("a");
functionreturn_obj(){
returnsource;
}
functionauto_click(str){
window.location=str;
}
functionmouseover_func(e){
source=event.srcElement;
start=setTimeout("auto_click('"+source+"')",1500);
}
functionmouseout_func(e){
clearInterval(start);
}
YAHOO.util.Event.addListener(links,"mouseover",mouseover_func);
YAHOO.util.Event.addListener(links,"mouseout",mouseout_func);