zoukankan      html  css  js  c++  java
  • 移动端下拉加载

    /**
    * 初始化下拉加载
    */
    function scrollInit(){
    var bottom = 50;
    //下拉加载[待定问题 绑定dom元素不对]
    $('#tapContainer').off('scroll').on('scroll',function () {  
     if($('#templateContainer').length < 1){
    return;
    }
    var hei = $('#templateContainer').height() ;
    var bodyHei = $(document).height(); 
    var offsetTop = Math.abs($('#templateContainer').offset().top);
    hei - bodyHei - offsetTop;
    if ( bottom > (hei - bodyHei - offsetTop)) {                   
    reservation();                  
    }   
    }); 
    }
  • 相关阅读:
    CF733F
    P4826
    洛谷P2687 & P1108
    CF42A
    洛谷P1858
    CF1428C
    洛谷P4981
    树形DP
    背包六讲(也不知道为啥就是六个 $QwQ$)
    2020
  • 原文地址:https://www.cnblogs.com/shuaitong/p/7459575.html
Copyright © 2011-2022 走看看