10

我想实现无限滚动。下面是我的布局的简短形式。由于我有一些相对定位的元素,因此不会触发 javascript 滚动事件。

如何解决此问题以触发滚动事件并实现无限滚动?

我的主要布局是:

<div id="container">
    <div class="wrapper">
        <div id="header">
        ...
        </div> <%-- header --%>

        <div id="main">
        ...
        </div>

    </div> <%-- wrapper --%>
</div> <%-- container --%>
<div id="footer">
</div>

我的CSS是:

#container {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 35px;
    left: 0;
    right: 0;
    overflow-y: auto;      
    overflow-x: hidden;      
}

.wrapper {
    margin: 0 auto;
    width: 960px;
    position: relative;
}   

#header {
    position: relative;
}

#main {
}

#footer {
    z-index: 2;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35px;
} 

为了实现无限滚动,我必须进行哪些更改才能接收带有布局的浏览器滚动事件?

4

3 回答 3

18

实现它的正确方法是:

 <div id="container" onScroll="handleOnScroll();">

<script>
function handleOnScroll() {
        alert("scroll");
    };
</script>
于 2012-11-28T00:01:11.040 回答
8

编辑:由于您最初用标记了您的问题...


scroll要使用 jQuery捕获事件...

HTML:

<div id="container">
    CONTENT
</div> 

jQuery:

$(document).ready(function() {

    $('#container').scroll(function() {
        alert('scroll');
        // presumably your infinite scrolling code here
    });

});

见: http ://api.jquery.com/scroll/

于 2012-11-28T00:17:16.507 回答
4

这是我在我的代码中使用的...

 <div id="DataDiv" style="overflow: auto; width: 280px; height:400px; margin-top: 10px;"
                    onscroll="Onscrollfnction();">
      my content here 
 </div>

功能如下

function Onscrollfnction() {
            var div = document.getElementById('DataDiv');
            div.scrollLeft;
            return false;
        };

内容超过 400px 后,滚动将开始并且将无限......享受

于 2012-11-21T12:02:45.747 回答