Disable scrolling in an iPhone web application?

后端 未结 9 1774
遇见更好的自我
遇见更好的自我 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 10:58

    Disable:

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

    Enable:

    document.ontouchstart = function(e){ return true; }
    

提交回复
热议问题