单页网站在错误的部分开放

时间:2012-06-27 17:06:23

标签: jquery smooth-scrolling singlepage

所以我创建了一个单页网站,它使用jQuery平滑滚动来导航到网站的各个部分。出于某种原因,当我在浏览器中打开页面(我在多个浏览器和计算机上测试过)时,网站会在页面的一半而不是页面的顶部打开。

这是我用来创建平滑滚动的脚本。

这是网站

  

http://usspcatalystcentre.org.uk/

<script>
    $(function() {

        function filterPath(string) {
            return string
            .replace(/^\//,'')
            .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
            .replace(/\/$/,'');
        }

        var locationPath = filterPath(location.pathname);
        var scrollElem = scrollableElement('html', 'body');

        // Any links with hash tags in them (can't do ^= because of fully qualified URL potential)
        $('a[href*=#]').each(function() {

            // Ensure it's a same-page link
            var thisPath = filterPath(this.pathname) || locationPath;
            if (  locationPath == thisPath
                && (location.hostname == this.hostname || !this.hostname)
                && this.hash.replace(/#/,'') ) {

                    // Ensure target exists
                    var $target = $(this.hash), target = this.hash;
                    if (target) {

                        // Find location of target
                        var targetOffset = $target.offset().top;
                        $(this).click(function(event) {

                            // Prevent jump-down
                            event.preventDefault();

                            // Animate to target
                            $(scrollElem).animate({scrollTop: targetOffset}, 700, function() {

                                // Set hash in URL after animation successful
                                location.hash = target;

                            });
                        });
                    }
            }

        });

        // Use the first element that is "scrollable"  (cross-browser fix?)
        function scrollableElement(els) {
            for (var i = 0, argLength = arguments.length; i <argLength; i++) {
                var el = arguments[i],
                $scrollElement = $(el);
                if ($scrollElement.scrollTop()> 0) {
                    return el;
                } else {
                    $scrollElement.scrollTop(1);
                    var isScrollable = $scrollElement.scrollTop()> 0;
                    $scrollElement.scrollTop(0);
                    if (isScrollable) {
                        return el;
                    }
                }
            }
            return [];
        }

    });
    </script>
提前谢谢,汤姆

1 个答案:

答案 0 :(得分:2)

在“应用”下,从输入元素中删除autofocus

  

<强> Autofocus

     

如果存在,则指定元素应该   页面加载时自动获得焦点

以上意味着当输入元素启用了自动对焦时,页面将在页面加载时向下滚动到该元素,这也是您的问题。

解释该方案的示例DEMO

希望有所帮助