我正在尝试做一些看起来很简单的事情,但是以某种方式无法正常工作。
用户从jquery datepicker中选择了一个启用了showWeek
的日期。
$(".datepicker").datepicker({
showWeek: true,
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd'
});
但是,当将生成的日期字符串输入到php datetime中时,该星期将不对应,并且距未来1周。
$start_date = isset($_POST['startdate']) ? $_POST['startdate'] : "";
$start = new DateTime($start_date);
echo $start->format("W");
IE,2018-10-02在我的日期选择器中显示为第39周,但是上面从将日期读取回日期时间并格式化为周的回显返回了第40周。
据我所知,jquery datepicker和php datetime类在默认情况下在哪几周并不一致。
有没有办法解决这个问题?
PHP date说它符合ISO-8601,Checking online为我确认php正确,那么如何解决日期选择器正确显示的问题?
答案 0 :(得分:3)
好的,这是解决方案:根据jquery ui,您需要指定第一天,而在您的代码中则缺少它:
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Show week of the year</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker({
showWeek: true,
firstDay: 1,
changeMonth: true,
changeYear: true,
dateFormat: 'yy-mm-dd'
});
} );
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
只需添加firstDay:1,一切都会按预期进行。