android - 如何为 ZipCode 和三星 Galaxy 强制使用数字键盘?
<p><p>我已经阅读了有关 stackoverflow 的几个答案,这些答案并没有解决显示三星 Galaxy 邮政编码数字键盘的问题。 </p>
<p>iOS 会调出数字键盘,但三星 Galaxy 不会为此代码调出数字键盘:</p>
<pre><code><input name="zipCode" type="text" pattern="\d*" required="required" title="Please enter a valid U.S. zip code">
</code></pre>
<p>HTML5 数字输入类型不起作用,因为它会截断以零开头的邮政编码:</p>
<pre><code><input name="zipCode" type="number" required="required" min="0" title="Please enter a valid U.S. zip code">
</code></pre>
<p>这不适用于 iOS 或三星 Galaxy,因为 iOS 会寻找 * 或\d* 的模式:</p>
<pre><code><input name="zipCode" type="text" pattern="^\d{5}$" required="required" title="Please enter a valid U.S. zip code">
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我相信电话号码可能会起作用。试试:</p>
<p><code><input type="tel"/></code></p></p>
<p style="font-size: 20px;">关于android - 如何为 ZipCode 和三星 Galaxy 强制使用数字键盘?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/29850783/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/29850783/
</a>
</p>
页:
[1]