如何在手机上禁止浏览器的网页滚动

    cordova项目在iOS平台上面测试的时候,会出现页面的滚动,露出iphone手机灰色的背景?

解决方法:

head标签添加视口:   

<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">

 当页面高度超过设备可见高度时,阻止掉touchmove事件。

document.body.addEventListener('touchmove', function (event) {
    event.preventDefault();
}, false);



你可能感兴趣的:(浏览器,手机)