0

所以我创建了一个单页网站,它使用 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>

在此先感谢,汤姆

4

1 回答 1

2

在应用下autofocus从您的输入元素中删除。

自动对焦

当存在时,它指定一个元素在页面加载时应该自动获得焦点

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

一个解释场景的示例演示。

希望能帮助到你

于 2012-06-27T17:33:29.517 回答