window.onload = function(){
document.body.addEventListener("touchmove",function(event){
event.preventDefault();
});
};
微信、手机页面禁止页面下拉
最新推荐文章于 2024-03-21 11:27:18 发布
window.onload = function(){
document.body.addEventListener("touchmove",function(event){
event.preventDefault();
});
};