alert(dateObj)
daje Wed Dec 30 2009 00:00:00 GMT+0800
Jak uzyskać datę w formacie 2009/12/30
?
alert(dateObj)
daje Wed Dec 30 2009 00:00:00 GMT+0800
Jak uzyskać datę w formacie 2009/12/30
?
Odpowiedzi:
var dateObj = new Date();
var month = dateObj.getUTCMonth() + 1; //months from 1-12
var day = dateObj.getUTCDate();
var year = dateObj.getUTCFullYear();
newdate = year + "/" + month + "/" + day;
lub możesz ustawić nową datę i podać powyższe wartości
getMonth
i getUTCMonth
?
getUTCDay()
należy zastąpić getUTCDate()
, ponieważ dzień to numer dnia w tygodniu (0–6), a data to numer dnia w miesiącu (1-31).
var dt = new Date();
dt.getFullYear() + "/" + (dt.getMonth() + 1) + "/" + dt.getDate();
Ponieważ indeks miesiąca wynosi 0, należy go zwiększyć o 1.
Edytować
Aby uzyskać pełną listę funkcji obiektów daty, zobacz
getMonth()
Zwraca miesiąc (0-11) w określonej dacie zgodnie z czasem lokalnym.
getUTCMonth()
Zwraca miesiąc (0-11) w określonej dacie zgodnie z czasem uniwersalnym.
new Date().toISOString()
"2016-02-18T23:59:48.039Z"
new Date().toISOString().split('T')[0];
"2016-02-18"
new Date().toISOString().replace('-', '/').split('T')[0].replace('-', '/');
"2016/02/18"
new Date().toLocaleString().split(',')[0]
"2/18/2016"
Sugeruję skorzystanie z Moment.js http://momentjs.com/
Następnie możesz zrobić:
moment(new Date()).format("YYYY/MM/DD");
Uwaga: tak naprawdę nie musisz dodawać, new Date()
jeśli chcesz bieżącą datę, dodałem ją tylko jako odniesienie, do którego możesz przekazać obiekt daty. dla bieżącej daty i godziny działa to również:
moment().format("YYYY/MM/DD");
informacje
Jeśli pożądany jest dwucyfrowy miesiąc i data (2016/01/01 vs. 2016/1/1)
kod
var dateObj = new Date();
var month = ('0' + (dateObj.getMonth() + 1)).slice(-2);
var date = ('0' + dateObj.getDate()).slice(-2);
var year = dateObj.getFullYear();
var shortDate = year + '/' + month + '/' + date;
alert(shortDate);
wynik
2016/10/06
skrzypce
https://jsfiddle.net/Hastig/1xuu7z7h/
kredyt
Więcej informacji i odpowiedź na tę odpowiedź
więcej
Aby dowiedzieć się więcej o spróbować to sam redaktor w w3schools pomógł mi lepiej zrozumieć, w jaki sposób z niego korzystać..slice
Fajny dodatek do formatowania: http://blog.stevenlevithan.com/archives/date-time-format .
Dzięki temu możesz napisać:
var now = new Date();
now.format("yyyy/mm/dd");
Skorzystaj z metod Data Get.
http://www.tizag.com/javascriptT/javascriptdate.php
http://www.htmlgoodies.com/beyond/javascript/article.php/3470841
var dateobj= new Date() ;
var month = dateobj.getMonth() + 1;
var day = dateobj.getDate() ;
var year = dateobj.getFullYear();
FORMAT EUROPEJSKI (ANGIELSKI / HISZPAŃSKI)
Potrzebuję również bieżącego dnia, możesz go użyć.
function getFormattedDate(today)
{
var week = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
var day = week[today.getDay()];
var dd = today.getDate();
var mm = today.getMonth()+1; //January is 0!
var yyyy = today.getFullYear();
var hour = today.getHours();
var minu = today.getMinutes();
if(dd<10) { dd='0'+dd }
if(mm<10) { mm='0'+mm }
if(minu<10){ minu='0'+minu }
return day+' - '+dd+'/'+mm+'/'+yyyy+' '+hour+':'+minu;
}
var date = new Date();
var text = getFormattedDate(date);
* W przypadku formatu hiszpańskiego wystarczy przetłumaczyć zmienną WEEK.
var week = new Array('Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado');
Wyjście: poniedziałek - 16.11.2015 14:24
Dlaczego nie po prostu?
dateObj.toISOString().slice(0, 10) // YYYY-MM-DD
Sprawdź tutaj:
const date1 = new Date('December 17, 1995 03:24:00');
console.log(date1.toISOString().slice(0, 10))
Oto czystszy sposób na uzyskanie roku / miesiąca / dnia za pomocą literałów szablonów:
var date = new Date();
var formattedDate = `${date.getFullYear()}/${(date.getMonth() + 1)}/${date.getDate()}`;
console.log(formattedDate);
let dateObj = new Date();
let myDate = (dateObj.getUTCFullYear()) + "/" + (dateObj.getMonth() + 1)+ "/" + (dateObj.getUTCDate());
W celach informacyjnych możesz zobaczyć poniższe szczegóły
new Date().getDate() // Return the day as a number (1-31)
new Date().getDay() // Return the weekday as a number (0-6)
new Date().getFullYear() // Return the four digit year (yyyy)
new Date().getHours() // Return the hour (0-23)
new Date().getMilliseconds() // Return the milliseconds (0-999)
new Date().getMinutes() // Return the minutes (0-59)
new Date().getMonth() // Return the month (0-11)
new Date().getSeconds() // Return the seconds (0-59)
new Date().getTime() // Return the time (milliseconds since January 1, 1970)
let dateObj = new Date();
let myDate = (dateObj.getUTCFullYear()) + "/" + (dateObj.getMonth() + 1)+ "/" + (dateObj.getUTCDate());
console.log(myDate)
// Zwróć minuty (0-59) nową datę (). GetMonth () // Zwróć miesiąc (0-11) nową datę (). GetSeconds () // Zwróć sekundy (0-59) nową datę () .getTime () // Zwraca czas (w milisekundach od 1 stycznia 1970)
Możesz po prostu użyć tego kodu jednego wiersza, aby uzyskać datę w formacie rok-miesiąc-data
var date = new Date().getFullYear() + "-" + new Date().getMonth() + 1 + "-" + new Date().getDate();
Korzystam z tego, co działa, jeśli podasz mu znacznik daty obj lub js:
getHumanReadableDate: function(date) {
if (date instanceof Date) {
return date.getDate() + "/" + (date.getMonth() + 1) + "/" + date.getFullYear();
} else if (isFinite(date)) {//timestamp
var d = new Date();
d.setTime(date);
return this.getHumanReadableDate(d);
}
}
ES2018 wprowadził grupy przechwytywania wyrażeń regularnych, które można wykorzystać do przechwytywania dnia, miesiąca i roku:
const REGEX = /(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2});
const results = REGEX.exec('2018-07-12');
console.log(results.groups.year);
console.log(results.groups.month);
console.log(results.groups.day);
Zaletą tego podejścia jest możliwość wychwycenia dnia, miesiąca, roku dla niestandardowych formatów ciągów znaków.
Nr ref. https://www.freecodecamp.org/news/es9-javascripts-state-of-art-in-2018-9a350643f29c/