We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
如題,不知道為何10月之後的都會有問題,之前的都正常
The text was updated successfully, but these errors were encountered:
https://github.com/slouchy/JQueryDatePickerTW/releases
可以參考修改後的版本
Sorry, something went wrong.
我也有遇到同樣的問題,因為補零機制異常,大於10的月份(10、11、12)會被補成"010、011、012",故我使用另外一種補零方法,就可以使用了,可以參考看看。
// 年分小於100會被補成19**, 要做例外處理 var yearTW = (inst.selectedYear > 1911 ? '0': '')+ (inst.selectedYear-1911) ; var monthTW = (inst.selectedMonth + 1 < 10 ? '0' : '') + (inst.selectedMonth +1); var dayTW = (inst.selectedDay < 10 ? '0' : '') + inst.selectedDay;
No branches or pull requests
如題,不知道為何10月之後的都會有問題,之前的都正常
The text was updated successfully, but these errors were encountered: