jQuery函数等于href =#

Joh*_*son 2 jquery

是否有一个jquery函数可以让你转到#name,就像你可以链接到href ="#name"一样,所以我可以直接将文件转到#name

Nic*_*ver 5

您可以更改location.hash,如下所示:

$(function() {
  window.location.hash = '#name'; //works with or without the # included
});
Run Code Online (Sandbox Code Playgroud)

虽然如果你只是超链接到页面,这是内置的浏览器行为,例如,http://site.com/page.html#name将具有相同的滚动加载效果.