js隐藏报表块滚动条(注意:需要报表块设置冻结,谷歌内核浏览器)
setTimeout(function() {
//隐藏报表块REPORT0的滚动条
$("div[widgetname=REPORT0]").find(".frozen-north")[0].style.overflow = "hidden";
$("div[widgetname=REPORT0]").find(".frozen-center")[0].style.overflow = "hidden";
}, 100);
或者
添加初始化事件
var style=document.createElement('style');
style.innerHTML=".test::before{color:green}";//添加样式内容的话也可以用上面提到过的`insertRule`,相对例子里的硬编码会更优雅点。
document.head.appendChild(style);
document.styleSheets[0].insertRule('::-webkit-scrollbar{overflow-x:hidden;}',0)
document.styleSheets[0].insertRule('::-webkit-scrollbar{ display: none; /* Chrome Safari */;}',0)
https://bbs.fanruan.com/wenda/question/81651.html