4

我想让浏览器滚动 div 的 id

<div id="test">
   lol
</div> 

所以我使用这段代码

window.location = "#test";

但我现在的网址是这样的

http://locahost/index.html#test

是否可以删除“#test”但去那个?

4

1 回答 1

7

滚动到元素:

document.querySelector('#test').scrollIntoView();
于 2013-07-05T04:53:21.867 回答