我想使用html5元素< input type =“number”>在我的网站上,但是我想知道在不支持此功能的浏览器中该字段会发生什么?是否比传统的< input type =“text”>那些浏览器的字段?
谢谢!
解决方法
当浏览器无法识别< input>的特定类型值时,它将恢复为默认值,即该文本。因此,以下所有以下内容与不支持type =“number”的浏览器相当:
<input type="number"> <input type="somevaluethatdoesntexist"> <input type="text"> <input>
对于支持type =“number”的浏览器,数字< input>将被显示,而不是文本< input> ;. 阅读更多关于type
attribute in the HTML Specification。