jQuery函数等于href =#

时间:2010-11-08 17:47:48

标签: jquery

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

4 个答案:

答案 0 :(得分:5)

您只需更改location.hash,就像这样:

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

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

答案 1 :(得分:1)

有JavaScript:

window.location.hash = "#name"

https://developer.mozilla.org/en/DOM/window.location

答案 2 :(得分:1)

虽然有点矫枉过正,但您可以尝试使用scrollto插件:

Scrollto

答案 3 :(得分:0)

<html>
<head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
</head>
<body>
<a id="goto" href="#this">go to this</a>
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<div id="this">this</div>
</body>
</html>
<script type="text/javascript">
    $(function(){

        $("#goto")[0].click();

    });
</script> 

或者

<html>
<head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
</head>
<body>
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
<div id="this">this</div>
</body>
</html>
<script type="text/javascript">
    $(function(){

        $('<a href="#this">go to this</a>')[0].click();

    });
</script>