. 代碼如下:
$("#regDate").datepicker(
{
showMonthAfterYear: true, // 月在年之後顯示
changeMonth: true, // 允許選擇月份
changeYear: true, // 允許選擇年份
dateFormat:'yy-mm-dd', // 設置日期格式
closeText:'關閉', // 只有showButtonPanel: true才會顯示出來
duration: 'fast',
showAnim:'fadeIn',
showOn:'button', // 在輸入框旁邊顯示按鈕觸發,默認為:focus。還可以設置為both
buttonImage: 'images/commons/calendar.gif', // 按鈕圖標
buttonImageOnly: true, // 不把圖標顯示在按鈕上,即去掉按鈕
buttonText:'選擇日期',
showButtonPanel: true,
showOtherMonths: true,
//appendText: '(yyyy-mm-dd)',
});