当用户输入任何数据时,如何防止ipad滚动

时间:2013-06-20 08:13:54

标签: html ios ipad scroll

当用户在ipad上输入数据时,有没有办法停止这种滚动,我尝试了不同的东西但是没有用。

有没有办法阻止这种滚动。

这是我的代码

             <html lang = "en">
            <head>
            <title>formDemo.html</title>
            <meta charset = "UTF-8" />
            <script>
            $(document).ready(function() {  
                $(document).bind('touchmove', false);


          });

         </script>

         </head>
         <body>
        <h1>Form Demo</h1>
        <form>
       <label for="name">Text Input:</label>
       <input type="text"   name="name" id="inputtext"  onFocus="window.scrollTo(0, 0); value="" style="margin:400px 0 0 0;" />
       </form>
       </body>
       </html>

1 个答案:

答案 0 :(得分:1)

您的问题几乎已经回答here。您只需将逻辑与:

组合在一起
$(document).bind('touchmove', false); // or true, depends you want to disable / enable