jQuery UI不会根据期望格式化日期

时间:2014-11-05 22:33:37

标签: javascript jquery jquery-ui jquery-ui-datepicker date-formatting

以下内容在Chrome和FF上打印Nov 30。我期待Dec 01

<html>
<head>
<link rel="stylesheet" href="jquery-ui.min.css">
<script src="jquery-1.11.1.min.js"></script>
<script src="jquery-ui.min.js"></script>
<script>
$(document).ready(function(){
  var $t = $.datepicker.formatDate("M dd", new Date("2014-12-01"));
  console.log($t);
});
</script>
</head>
<body>
</body>
</html>

我做错了什么?

1 个答案:

答案 0 :(得分:0)

尝试使用parseDate('M dd', '2014-12-01')