首先要知道这个锚点是如何加上去的,目前使用过两种方式加入了锚点
1:标签中的href
2:window.location.has
第一种很常见网上用例也比较多:
点击这个超链接就会在url中加入锚点 <a class="scroll" href="#content01">内容</a>
去掉的话
$(".scroll").click(function(event){
event.preventDefault();
});
第二种有点少见,加入锚点的用例很多但是去掉的比较少
window.location.has="1";加入锚点
去掉的话呢目前我发现两种方式
1:手动点一下浏览器的返回按钮哈哈
2:window.history.back();
好吧你也可以认为是一种方式!!!希望能帮的上你!