我正在使用bootstrap构建一个表单.我有一个输入字段,我希望用户插入日期.HTML以这种方式编码:
<div class="form-group">
<label for="entry_date">Date of entry:</label>
<input type="date" name='entry_date' class="form-control" id="entry_date"
<span class="help-block">Some helpful words here</span>
</div>
Run Code Online (Sandbox Code Playgroud)
Bootstrap使用占位符自动填充此字段dd/mm/yyyy.我怎么能覆盖这个呢?我需要它,所以我可以重新填充该字段(例如,在部分提交后重新加载表单时)
小智 7
这不是一个引导问题,它是新的HTML5日期输入控件
只需使用value属性如下:
<input type="date" name='entry_date' class="form-control" id="entry_date" value="2012-12-12">
Run Code Online (Sandbox Code Playgroud)
其他属性在此处的W3C页面上记录