0

在我的单页网站上,我添加了一个脚本以在不同的 div 框之间进行平滑移动。但突然导航停止工作。这是最后一个打破它。

<script>
$(function(){
var sections = {},
    _height  = $(window).height(),
    i        = 0;

// Grab positions of our sections 
$('.section').each(function(){
    sections[this.name] = $(this).offset().top;
});

$(document).scroll(function(){
    var pos = $(this).scrollTop();

    // Look in the sections object and see if any section is viewable on the screen. 
    // If two are viewable, the lower one will be the active one. 
    for(i in sections){
        if(sections[i] > pos && sections[i] < pos + _height){
            $('a').removeClass('active');
            $('#nav_' + i).addClass('active');
            }  
        }
    });
});




        $(".scroll").click(function(event){
            event.preventDefault();
            var full_url = this.href;
            var parts = full_url.split("#");
            var trgt = parts[1];
            var target_offset = $("#"+trgt).offset();
            var target_top = target_offset.top;
            $('html, body').animate({scrollTop:target_top}, 500);
        }); 

</script>  
4

2 回答 2

0

控制台显示错误line 14

$('#nav').localScroll();

还有Cannot read property 'top' of undefined 错误

更新

看起来id section1没有元素

应该是nav_section1

这条线

$("#"+trgt).offset();

应该是

$("#nav_"+trgt).offset();  OR  $('[href="#' + trgt + "]').offset()

还要确保在获取值时元素没有隐藏offset()..

于 2012-12-14T03:43:38.130 回答
-1

一定会喜欢 Chrome 的 Inspector ......你错过了一个分号。

<script type="text/javascript">
$(function(){
    $('#nav').localScroll();
});
</script>

你为什么用<nav>?该说明讨论了使用<div>


试试这个:

<div id="nav">
    <ul>
        <li><a id="nav_section1" href="#section1" class="scroll active">Section 1</a></li>
        <li><a id="nav_section2" href="#section2" class="scroll">&gt;Section 2</a></li>
        <li><a id="nav_section3" href="#section3" class="scroll">&gt;Section 3</a></li>
        <li><a id="nav_section4" href="#section4" class="scroll">&gt;Section 4</a></li>
        <li><a id="nav_section5" href="#section5" class="scroll">&gt;Section 5</a></li>
        <li><a id="nav_section6" href="#section6" class="scroll">&gt;Section 6</a></li>
        <li><a id="nav_section7" href="#section7" class="scroll">&gt;Section 7</a></li>
     </ul>
</div>
于 2012-12-14T03:45:18.907 回答