我想将日期类型输入的默认dd-mm-yyyy字段更改为此字段
https://i.gyazo.com/fc7d941eaeb64ebcc4570e418b860d55.png DATE
我尝试将输入值分配给Date,但是没有用
<span className="right-element"><input type="date" name="leadDate" value ="Date" /></span>
答案 0 :(得分:0)
<input placeholder="Date" class="form-control" type="text" onfocus="(this.type='date')" onblur="(this.type='text')" id="date">
答案 1 :(得分:0)
您可以这样做以将占位符设置为“日期”-
<input placeholder="Date" type="text" onfocus="(this.type='date')" />