window.onload = function(){
document.body.addEventListener("touchmove",function(event){
event.preventDefault();
});
};
微信、手机页面禁止页面下拉
最新推荐文章于 2025-02-14 09:26:41 发布
window.onload = function(){
document.body.addEventListener("touchmove",function(event){
event.preventDefault();
});
};