1、html页面内设置锚点,锚点定义
复制代码 代码示例:
<a name="firstAnchor">&nsbp;</a>
2、锚点使用
复制代码 代码示例:
<a href="#firstAnchor">跳至第一个锚点</a>
javascript如何实现在完成一个操作后跳至页面的某个固定锚点,js中location.href可以跳转至某个url;
跳至(定位到)某个固定锚点的办法
1、location.href="http://www.jb200.com/jb/#firstAnchor"; // firstAnchor为锚点名称
2、window.location.hash = firstAnchor; // firstAnchor为锚点名称