javascript - 文本字段不会自动缩放焦点 [JQuery/Javascript]
<p><p>我在网络应用程序中制作了一个包含一些字段的表单。在 IOs Safari 中,当用户点击它时,它应该是缩放的(我认为)。就像这张照片中的一样</p>
<p> <img src="/image/yufzn.jpg" alt="enter image description here"/> </p>
<p>但我的问题是,当我点击它时,没有任何事情像缩放一样发生。只有虚拟键盘是打开的。我也想放大。</p>
<p>我正在使用 <code>JQuery Mobile 1.4</code>,这是 <code>input field</code></p> 的代码
<pre><code><label for="fname">First Name:</label>
<input type="text" name="fname" id="fname" value="" placeholder="First Name" onKeyPress="restoreState(this)"/>
</code></pre>
<p>以下是我的 View 图片,但在用户选项卡时它不是缩放(Iphone Safari)
<img src="/image/zXciL.png" alt="enter image description here"/> </p>
<p><strong>更新</strong>
以下 <code>ViewPorts</code> 我试过了</p>
<pre><code><meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
OR
<meta name="viewport" content="initial-scale=1.0, user-scalable=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>试试</p>
<pre><code><meta name="viewport" content="initial-scale=1.0, user-scalable=1" />
</code></pre>
<p>Jquery 来做这个</p>
<pre><code>function AllowZoom(flag) {
if (flag == true) {
$('head meta').remove();
$('head').prepend('<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=10.0, minimum-scale=1, user-scalable=1" />');
} else {
$('head meta').remove();
$('head').prepend('<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0" />');
}
}
</code></pre>
<p>使用 <code>user-scalable=0</code>//zoomDisable</p>
<p>使用 <code>user-scalable=1</code>//zoomEnable</p>
<p><strong>更新:</strong></p>
<p><strong>initial-scale</strong>(0 到 10.0)设置初始显示后页面比例的乘数。安全的赌注:如果需要设置,请将其设置为 1.0。较大的值 = 放大,较小的值 = 缩小</p>
<p><strong>minimum-scale</strong>(0 到 10.0)用户可以“缩小”到的最小乘数。在移动版 Safari 上默认为 0.25。</p>
<p><strong>maximum-scale</strong>(0 到 10.0)用户可以“放大”到的最小乘数。在移动版 Safari 上默认为 1.6。</p></p>
<p style="font-size: 20px;">关于javascript - 文本字段不会自动缩放焦点 ,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/25198903/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/25198903/
</a>
</p>
页:
[1]