5

我正在用引导程序设计一个表单。我有一个输入字段,我希望用户在其中插入日期。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. 我怎样才能覆盖这个?我需要它,以便我可以重新填充该字段(例如,在部分提交后重新加载表单时)

4

1 回答 1

7

这不是引导问题,而是新的 HTML5 日期输入控件

只需使用 value 属性,如下所示:

 <input type="date" name='entry_date' class="form-control" id="entry_date" value="2012-12-12">

其他属性记录在此处的 W3C 页面上

显示属性的 JSBIN 在这里

于 2013-11-03T23:04:02.113 回答