【发布时间】:2016-04-17 11:40:04
【问题描述】:
我想将 datepicker 添加到我的站点 - 我通过 Sandbox 创建了自己的配置:
<div class="input-group date">
<input type="text" class="form-control">
<span class="input-group-addon"><i class="glyphicon glyphicon-th"></i></span>
</div>
$('#sandbox-container input').datepicker({
format: "dd/mm/yyyy",
startDate: "01/09/2016",
endDate: "31/12/2016",
language: "pl",
daysOfWeekDisabled: "1,2,3,4,5",
daysOfWeekHighlighted: "0,6",
autoclose: true,
todayHighlight: true,
toggleActive: true,
defaultViewDate: { year: 1977, month: 04, day: 25 }});
在 eternicode 一切都很好,但我找不到为什么它在我的网站上不起作用: Link
【问题讨论】:
标签: jquery twitter-bootstrap datepicker