浮窗出现时阻止浮窗下的页面滚动

//阻止touchmove的默认事件
$('body').on('touchmove',function(e){
e.preventDefault();
});
})

//解除阻止默认事件
$('body').off('touchmove');
}

 

你可能感兴趣的:(js)