0
我正在使用Bootstrap datepicker內聯,並且有獲取日期值的問題。Datepicker getDate方法適用於第二次點擊並顯示上一次選擇的日期
這裏是我的代碼:
<div class="datepicker-container"></div>
$('.datepicker-container').datepicker({
maxViewMode: 1,
todayBtn: "linked",
language: "pl",
autoclose: true,
todayHighlight: true
});
$(".datepicker").on('click', 'td', function(event){
console.log($('.datepicker-container').datepicker("getDate"));
});
當我選擇日期,它僅適用於第二次顯示以前選擇的值。