本帖最后由 wanglanchun0 于 2015-01-20 22:57:40 编辑

解决方案 »

  1.   

    比如你的那个ifram 的 id 是 if1那么$($('#if1')[0].contentWindow).scroll(function() {
             alert("Reached bottom!");
    });懒得测试了 希望可以
      

  2.   

    可以把你页面的内容用一个大的div包住然后在这个div上加onscroll
      

  3.   

    另外我在我的那个iframe上是加了 scrolling=no 的,因为不加的话页面不美观。不知道这个是不是会影响?
      

  4.   

    在这个iframe页面上的任何一个元素加scroll都不起作用
      

  5.   

    用这个试下
    <div style="width:100%;height:100%;overflow: scroll;">
    <div style="width:100%;height:1000px;background:#ff0;"></div>
    <div>
    <style>body { margin-right: -15px; margin-bottom: -15px; }</style>
    <script>
      $('div').scroll(function() {
             alert("Reached bottom!");
    });
    </script>
    在这个iframe页面上的任何一个元素加scroll都不起作用