ReactStrap:在日期类型的输入中显示默认值
ReactStrap: Display default value in Input of type date
我有这个日期Input
:
我正在尝试显示默认值:
<Input value="2017-06-01" type="date" />
但是,正如您在上面看到的,它没有显示。
我关注了 Mozilla documentation:
You can set a default value for the input with a date inside the value
attribute, like so:
<input type="date" value="2017-06-01">
尝试使用 defaultValue 属性
<Input defaultValue="2017-06-01" type="date" />
我有这个日期Input
:
我正在尝试显示默认值:
<Input value="2017-06-01" type="date" />
但是,正如您在上面看到的,它没有显示。
我关注了 Mozilla documentation:
You can set a default value for the input with a date inside the value attribute, like so:
<input type="date" value="2017-06-01">
尝试使用 defaultValue 属性
<Input defaultValue="2017-06-01" type="date" />