2016-08-03 121 views

回答

1

試試這個:

$(".datepicker").datepicker({ 
    showOn: "button", 
    showButtonPanel: true, 
    buttonImage: buttonCalendar, 
    buttonImageOnly: true, 
    buttonText: "" 
}); 

,並調用這個js代碼的網頁,你有日曆。

$.datepicker._gotoToday = function(id) { 
    $(id).datepicker('setDate', new Date()).datepicker('hide').blur(); 
}; 
+0

其工作正常。謝謝 –

相關問題