js 锚点定位【转】

时间:2022-08-02 14:28:44

锚点定义

<a name="firstAnchor">&nsbp;</a>

a标签锚点使用

<a href="#firstAnchor">跳至第一个锚点</a>

js 锚点使用

js中location.href可以跳转至某个url;
跳至(定位到)某个固定锚点的办法
1、location.href = "#firstAnchor"; // firstAnchor为锚点名称
2、window.location.hash = "#firstAnchor"; // firstAnchor为锚点名称


经测试:hash只会在跳转到此页面的第一次起作用,再次刷新此页面将不起作用,而href始终起作用

 

引用自: http://www.jb51.net/article/97710.htm