点击跳转到页面指定位置(div)

var bottombox = document.getElementById("bottombox");
bottombox.scrollIntoView();  //点击后地址栏url不会变化,可多次点击

var bottombox = document.getElementById("bottombox");
window.location.hash = "#bottombox";  //点击后地址栏url会在原来url后边加上#bottombox,再次点击没有反应

点击锚点也可实现跳转,即:

点击一个A标签超链接实现跳转,可以把A标签的href属性直接指向跳转指定位置的div,代码实现思路如下:

    <a href="#abc">点击跳转a>

    <div id="abc">将要跳转到这里div>

你可能感兴趣的:(JS,功能实现)