目前是三分钟跳转到另一个路径的报表,现在想在每天10.20和12.20附近的时间不跳转,等十分钟再跳转 ------------------------------------------------------------------------------------------ function time() { timer = setTimeout(function() { window.location.href = encodeURI(encodeURI("${contextPath}/decision/view/form?viewlet=/管理平台/工厂/工厂-月.frm")); //要轮播的报表url }, 180000); //轮播间隔 } time(); setTimeout(function() { //这里的控件名要全用大写 $("[widgetname=REPORT4]").mouseover(function() { clearTimeout(timer); }) $("[widgetname=REPORT4]").mouseleave(function() { time(); }) }) |