我正在使用引导程序构建一个表单。 我有一个输入字段,我希望用户插入日期。 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>
Bootstrap会自动使用占位符dd/mm/yyyy
填充此字段。
我怎么能覆盖这个呢?我需要它,所以我可以重新填充该字段(例如,在部分提交后重新加载表单时)
答案 0 :(得分:7)
这不是一个引导问题,它是新的HTML5日期输入控件
只需使用value属性,如下所示:
<input type="date" name='entry_date' class="form-control" id="entry_date" value="2012-12-12">
其他属性记录在the W3C page here
上