js 定位到某个锚点的方法
程序员文章站
2022-05-09 21:26:39
...
html页面内可以设置锚点,锚点定义
Html代码
<a name="firstAnchor">&nsbp;</a>
锚点使用
Html代码
<a href="#firstAnchor">跳至第一个锚点</a>
但对于js呢,在js中如何在完成一个操作后跳至页面的某个固定锚点呢
js中location.href可以跳转至某个url;
跳至(定位到)某个固定锚点的办法
1、location.href = "#firstAnchor"; // firstAnchor为锚点名称
2、window.location.hash = "#firstAnchor"; // firstAnchor为锚点名称
经测试:hash只会在跳转到此页面的第一次起作用,再次刷新此页面将不起作用,而href始终起作用