滚动一段时间后或者切换标题页的时候滚动条又出现了得如何解决
自定义滚动条插件 https://help.fanruan.com/finereport/doc-view-2412.html
JS实现隐藏滚动条 https://help.fanruan.com/finereport/doc-view-4231.html
隐藏滚动条接口 https://help.fanruan.com/finereport/doc-view-4300.html
文档是延迟函数
setTimeout(function() {
隐藏js
}, 10);
改成
定时函数
setInterval(function() {
}, 1000);//1000毫秒等于一秒,自己根据需要修改时间