I’m looking to disable the horizontal scroll bar on the iPad in 开发者_如何学JAVASafari when on my site.
I’ve tried e.preventDefault
but this seems to disable both vertical and horizontal scrolling.
Thanks!
Insert this in the head of the html page :
<meta name="viewport" content="width=device-width" />
try this
<meta name="viewport" content="width=device-width; initial-scale = 1.0; maximum-scale=1.0; user-scalable=no" />
<style type="text/css">
body {
overflow-x:hidden;
}
精彩评论