我正在編輯現有系統,他們使用Calendar.setup而不是jquery datepicker。我已經建議datepicker比calendar.setup更高級,但是他們仍然想使用calendar.setup。Javascript Calendar.setup獲取選定日期
我的問題是,我不知道如何獲取選定日期的值。
Calendar.setup
(
{
inputField : 'txtDate', // ID of the input field
ifFormat : "%Y-%m-%d", // The Date Format
button : 'txtDate' // ID of the button
}
);
你可能想給你的代碼的簡短說明。 –
嗨,我覺得這個帖子很有幫助。但有幾個問題,取得的日期是這樣的「20140520」,我如何格式化爲「Y/m/d」? – user1149244
想通了,我們可以使用this.selection.print(格式,分隔符)。文檔以供參考:http://www.dynarch.com/jscal/ – user1149244