Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 iOS 的 HTML5 Web 应用程序上使用“type=number”作为我的标签。我想要的行为是,当用户选择要编辑的文本字段时,iOS 上的字母数字键盘的数字端会显示出来,而它目前就是这样做的。
问题在于,当将带小数点的数字放入字段时,文本字段的背景会在 iOS 设备上变为粉红色。有没有办法关闭它或解决它?
尝试将novalidate属性添加到form.
novalidate
form
<form novalidate> <input type="number" /> </form>