我需要得到的日期爲yyyy-MM-dd
,但我總是得到不同的格式。如何根據需要獲取日期選擇器值?Datepicker格式getDate
https://jsfiddle.net/041h6mss/
HTML:
<input id="thedate" type="text" />
<input type="button" id="button" value="submit" />
<span id="output"></span>
JS:
$(function(){
$("#thedate").datepicker({
dateFormat: "D, M d, yy",
});
})
var output = document.getElementById("output");
document.getElementById("button").onclick = function() {
output.innerHTML = $("#thedate").datepicker("getDate");
};
我獲得價值爲Mon Apr 03 2017 00:00:00 GMT+0200 (CEST)
,但我想它作爲2017-03-03
您是否在使用[Moment](https://momentjs.com/)? –