超级连接JS事件
setTimeout(function() {
location.href = "#" + "abc111";
});
跳转锚点移动端没有效果, PC端正常使用
报表添加锚点实现跳转到指定行-https://help.finereport.com/doc-view-2498.html
这个效果是不支持移动端的
let element = document.getElementById("对应报表块的名称");element.scrollIntoView();element.scrollIntoView(false);element.scrollIntoView({block: "end"}); 这个移动端可以用