input type为number的input标签输入小数的方法
转自https://blog.csdn.net/eruituoa/article/details/52560872
<input type="number" step="0.01" />
在input标签中添加step属性,此例子中将step设为"0.01",即可以输入含两位小数的数字。(仅输入含一位小数或整数也可)
可以自行修改step值来修改精确度。
转自https://blog.csdn.net/eruituoa/article/details/52560872
<input type="number" step="0.01" />
在input标签中添加step属性,此例子中将step设为"0.01",即可以输入含两位小数的数字。(仅输入含一位小数或整数也可)
可以自行修改step值来修改精确度。