H5屏幕滑动触发方法

var clickSwitch=true;
$(function() {
    $('body').bind('touchmove', function(e) {
        if($(window).scrollTop()>=$(document).height()-$(window).height()-50){
            if(clickSwitch){
                clickSwitch = false;
                var img = ""
                $(".loading").html(img);
                selectServiceByAjax();//调用得方法
            }
        }
    });
});

你可能感兴趣的:(html,javascript,JQuery,H5,屏幕滑动)