决策报表中,按照帮助文档上实现了跑马灯效果setTimeout(function() { $("div").find(".reportContent").style.overflow = "hidden";}, 100);window.flag = true;setTimeout(function() { $(".reportContent").mouseover(function() { window.flag = false; }) $(".reportContent").mouseleave(function() { window.flag = true; }) var old = -1; window.interval2 = setInterval(function() { if(window.flag) { currentpos = $(".reportContent").scrollTop; if(currentpos == old) { $(".reportContent").scrollTop = 0; } else { old = currentpos; $(".reportContent").scrollTop = currentpos + 1.5; } } }, 50);}, 1000)换成自定义的滚动条后,跑马灯效果消失,有什么办法,可以让跑马灯继续起作用吗。jiushi 就是想实现官网的这个效果~~