我想使用这个功能: http: //keith-wood.name/datepickBasics.html
文档: http: //keith-wood.name/datepick.html
如何在我的输入字段中实现它?
<div class="control-group">
<label class="control-label" for="input01">Registration Date</label>
<div class="controls">
<input type="text" class="input-xlarge" id="input01"
name="regDate">
</div>
</div>
根据 datePicker 文档,它说:
将日期选择器功能连接到您的输入字段或部门/跨度。
$(selector).datepick();
您可以在此过程中包含自定义设置。
$(selector).datepick({dateFormat: 'yyyy-mm-dd'});