我必须将日期格式化为DD-MMM-YYYY
格式。我正在使用reactjs。日期的格式为IE
但not in Google Chrome
。请建议。
<input name="requested_order_ship_date" type="date"
disabled={ this.state.mode }
value={ moment(this.state.item.requested_order_ship_date).format("DD-MMM-YYYY") }
className="form-control" onChange={ this.handleInputChange } />
答案 0 :(得分:6)
这实际上与React无关。对于<input type="date">
值,Chrome预计日期的值为YYYY-MM-DD
格式。
有关详细信息,请参阅Is there any way to change input type="date" format?。