image
alpha

代码写的好,bug改到老

form表单中input为 number 类型的 value 值问题

alpha    2020-02-16 03:08

        如果一个表单中的输入框是数字类型,加载默认值一般采用 value="0", 但是有时候可能会出现无法显示的情况,经过仔细排查,可能是这样写的:
<input type="number" min="0" max="10000" value=" 10 ">
或者:
<input type="number" min="0" max="10000" value=" 10">
再或者:
<input type="number" min="0" max="10000" value="10 ">
总之,value赋值不能有空格,否则就不会显示了。所以,正确的写法应该是:
<input type="number" min="0" max="10000" value="10">
 
Last Modified: 2020-02-16 03:17
Views: 2.0K

[[total]] comments

Post your comment
  1. [[item.time]]
    [[item.user.username]] [[item.floor]]Floor
  2. Click to load more...
  3. Post your comment