hover设定触发时间间隔

500毫秒执行一次

 $(".banner_menu_content li a").hover(function(){
        var aa=$(this).text().trim();  
    	setTimeout(function(){             
        requirementlist(aa.substring(aa.length-1,aa.length));       
        //这里触发hover事件
    	},500);
	},function(){
    
        });	

  

原文地址:https://www.cnblogs.com/feifeishi/p/6533275.html