第一种:通过a标签实现
<a href="#abc" rel="nofollow" target="_self">点击跳转</a>
<div id="abc">将要跳转到这里 </div>
第一种:通过window.location.hash
function onTopClick() {
window.location.hash = "#abc";
}
<div id="abc">将要跳转到这里 </div>
页面各元素赋予唯一ID,点击触发js点击事件,js通过ID滚动跳转定位到该元素,window.location.hash = "#abc"指的就是定位到当前页面id="abc"的div。
页面重定向:window.location.href="www.baidu.com" 后面是跟完整的url