ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯系官方銷售客服

1835022288

028-61286886

投訴 已解決 模塊表單(表單名為fankui)如何寫瀑布流 2 0
迅睿CMS版本:4.6.1 #模塊表單

模塊表單(表單名為fankui)如何寫瀑布流?下面的代碼沒成功

   <script>
    var Mpage=1;
    //滾動顯示更多
    var scroll_get = true;  //做個標志,不要反反復復的加載
    $(document).ready(function () {
        $(window).scroll(function () {
            if (scroll_get==true &&  (400 + $(window).scrollTop())>($(document).height() - $(window).height())) {
                scroll_get = false;
                layer.msg('內容加載中,請稍候...',{time:1000});
                dr_ajax_load_more();
            }
        });
    });

    function dr_ajax_load_more(){
        Mpage++;
        $.get('/index.php?s=api&c=api&m=template&name=fankui_list_data.html&module={MOD_DIR}&catid={$catid}&format=json&page='+Mpage+'&'+Math.random(),function(res){
            $('.footer-cont').hide();
            if(res.code==1){
                if(res.msg==''){
                    $('#is_ajax_btn').hide();
                    layer.msg("已經顯示完了",{time:500});
                }else{
                    $('#content_list').append(res.msg);
                    scroll_get = true;
                }
            }else{
                layer.msg(res.msg,{time:2500});
            }
        }, 'json');
    }
</script>
解決方案