我想使用datepicekr作为签到 - 签出,所以我有HTML:
<!-- Text input-->
<div class="form-group">
<label class="col-md-4 control-label" for="datum">Datum: Od</label>
<div class="col-md-3">
<input id="dp1" name="dp1" class="form-control" placeholder="Datum" type="text">
</div>
<div class="col-md-3">
<input id="dp2" name="dp2" class="form-control" placeholder="Datum" type="text">
</div>
</div>
我尝试使其适用于js:
var nowTemp = new Date();
var now = new Date(nowTemp.getFullYear(), nowTemp.getMonth(), nowTemp.getDate(), 0, 0, 0, 0);
var checkin = $("#dp1").datepicker({
onRender: function(date) {
return date.valueOf() < now.valueOf() ? 'disabled' : '';
}
}).on('changeDate', function(ev) {
if (ev.date.valueOf() > checkout.date.valueOf()) {
var newDate = new Date(ev.date)
newDate.setDate(newDate.getDate() + 1);
checkout.setValue(newDate);
}
checkin.hide();
$("#dp2")[0].focus();
}).data('datepicker');
var checkout = $("#dp2").datepicker({
onRender: function(date) {
return date.valueOf() <= checkin.date.valueOf() ? 'disabled' : '';
}
}).on('changeDate', function(ev) {
checkout.hide();
}).data('datepicker');
但我收到错误:
Uncaught TypeError: Cannot read property 'valueOf' of undefined
究竟是什么意思?我能做些什么来解决这个问题?我使用官方web资源中的代码为datepicker for bootstrap ...
答案 0 :(得分:0)
根据project page提供的示例,javascript工作正常。
我唯一能想到的是Javascript库没有加载 尝试将以下代码行添加到您的网页(或其本地等效代码)
<link rel="stylesheet" type="text/css" href="http://kylemitofsky.com/libraries/libraries/datepicker.css">
<script type="text/javascript" src="http://kylemitofsky.com/libraries/libraries/bootstrap-datepicker.js"></script>
如果这对您不起作用,请尝试使用小提琴作为启动点,以便将来提出更具针对性的问题。