删除 html 中最大输入的消息框 i

Removing message box for max input in html i

浏览器正在添加一条关于允许的最大值的消息。如何删除它?

https://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_input_max_min 重现:输入大于最大值的输入值,将光标保持在输入中,将鼠标移到外面,再移到输入里面,等待。您将收到消息。如何删除它??

在输入字段中使用空 title 属性。这会维护提交时的表单验证。

<input title="" type="number" id="quantity" name="quantity" min="1" max="5">