Disable scrolling in an iPhone web application?

后端 未结 9 1800
遇见更好的自我
遇见更好的自我 2020-11-27 10:36

Is there any way to completely disable web page scrolling in an iPhone web app? I\'ve tried numerous things posted on google, but none seem to work.

Here\'s my curre

9条回答
  •  一个人的身影
    2020-11-27 11:00

    document.ontouchmove = function(e){ 
        e.preventDefault(); 
    }
    

    is actually the best choice i found out it allows you to still be able to tap on input fields as well as drag things using jQuery UI draggable but it stops the page from scrolling.

提交回复
热议问题