iphone(苹果)手机浏览器顶部下拉出现网页源-LMLPHP

在苹果手机下拉页面,会出现类似上图那样,具体方法如下:

function handler(){//禁止默认滑动函数
event.preventDefault();
}
document.addEventListener("touchmove",function(e){
document.removeEventListener('touchmove', handler, false);
});

05-29 01:21