1
我一直在試用JqueryMobile的Datepicker,發現UI中顯示的星期編號是錯誤的。但桌面版本的JQuery Datepicker顯示正確的日期。JQueryMobile Datepicker錯誤周編號
JAN的第一週顯示爲第52周,應該是第1周。
有人遇到過這個問題??
我的代碼
//bind to pagecreate to automatically enhance date inputs
$("input[type='date'], input:jqmData(type='date')", this).each(function(){
$(this).after($("<div />").datepicker({ altField: "#" + $(this).attr("id"), showOtherMonths: false, showWeek: true, onSelect: function(dateText, inst) {
alert(dateText);}));
});