jquery选项卡,避免从外部链接跳转锚

时间:2012-11-21 16:19:09

标签: jquery url tabs anchor

我的页面上有一个Jquery选项卡,我想阻止当访问者从包含url(www.mypage.html#myanchor)中的锚点的外部链接进入页面时,页面将跳转到实际页面锚。我只想选择标签而不是跳转。 我仍然是jquery的新手,这是我用来构建标签的代码:

 <script>

    $(function() {

 $( "#tabs" ).tabs({

         select: function(event, ui) {

            // loading an iframe src on select
             if (ui.index==2){
             go('iframes/tendaggi_ignifughi.html');
             }
        }       

        });

});   

    </script>

如何修改上面的代码以达到我需要的任何答案非常感谢。

1 个答案:

答案 0 :(得分:2)

试试这段代码:

if (location.hash) {           // do the test straight away
    window.scrollTo(0, 0);     // execute it straight away
    setTimeout(function() {
        window.scrollTo(0, 0); // run it a bit later also for browser compatibility
    }, 1);
}