Disable scrolling in an iPhone web application?

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

    If you are using jquery 1.7+, this works well:

    $("donotscrollme").on("touchmove", false);
    

提交回复
热议问题