html - 当用户输入任何数据时如何防止ipad滚动
<p><p>当用户在 ipad 上输入数据时,有什么方法可以阻止这种滚动,我尝试了不同的方法但不起作用。</p>
<p>有什么办法可以阻止这种滚动。</p>
<p>这是我的代码</p>
<pre><code> <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>
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您的问题几乎得到解答<a href="https://stackoverflow.com/a/7733750/188331" rel="noreferrer noopener nofollow">here</a> .您只需将您的逻辑与:</p>
<pre><code>$(document).bind('touchmove', false); // or true, depends you want to disable / enable
</code></pre></p>
<p style="font-size: 20px;">关于html - 当用户输入任何数据时如何防止ipad滚动,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17208546/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17208546/
</a>
</p>
页:
[1]