参考文档:JS实现暂停和继续轮播报表- FineReport帮助文档 - 全面的报表使用教程和学习资料 (fanruan.com) 是按照这个JS写的,然后改了路径,但是显示404未找到, 代码如下: function time() { timer = setTimeout(function() { window.location.href = encodeURI(encodeURI("${contextPath}/webroot/WEB-INF/reportlets/型钢生产线.frm")); //要轮播的报表url }, 2000); //轮播间隔 } time(); setTimeout(function() { //这里的控件名要全用大写 $("[widgetname=REPORT1]").mouseover(function() { clearTimeout(timer); }) $("[widgetname=REPORT1]").mouseleave(function() { time(); }) }) time(); setTimeout(function() { //这里的控件名要全用大写 $("[widgetname=REPORT1]").mouseover(function() { clearInterval(timer); }) $("[widgetname=REPORT1]").mouseleave(function() { time(); }) }) |