alert(dateObj)
준다 Wed Dec 30 2009 00:00:00 GMT+0800
형식으로 날짜를 얻는 방법 2009/12/30
?
alert(dateObj)
준다 Wed Dec 30 2009 00:00:00 GMT+0800
형식으로 날짜를 얻는 방법 2009/12/30
?
답변:
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;
또는 새로운 날짜를 설정하고 위의 값을 줄 수 있습니다
getMonth
과 getUTCMonth
?
getUTCDay()
getUTCDate()
day는 요일 (0-6)의 숫자이고 date는 월 (1-31)의 숫자이므로 으로 대체해야합니다 .
var dt = new Date();
dt.getFullYear() + "/" + (dt.getMonth() + 1) + "/" + dt.getDate();
월 인덱스는 0부터 시작하므로 1 씩 증가시켜야합니다.
편집하다
날짜 개체 함수의 전체 목록은 다음을 참조하십시오.
getMonth()
현지 시간에 따라 지정된 날짜의 월 (0-11)을 반환합니다.
getUTCMonth()
지정된 날짜의 표준시를 기준으로 월 (0-11)을 반환합니다.
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"
Moment.js http://momentjs.com/ 을 사용하는 것이 좋습니다 .
그럼 당신은 할 수 있습니다 :
moment(new Date()).format("YYYY/MM/DD");
참고 : new Date()
현재 TimeDate를 원한다면 실제로 추가 할 필요가 없으며 날짜 객체를 전달할 수있는 참조로만 추가했습니다. 현재 TimeDate의 경우 다음과 같이 작동합니다.
moment().format("YYYY/MM/DD");
정보
두 자리 월과 날짜를 원하는 경우 (2016/01/01 대 2016/1/1)
암호
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);
산출
2016/10/06
깡깡이
https://jsfiddle.net/Hastig/1xuu7z7h/
신용
더
더에 대한 자세한 내용은 자신 편집기를 시도 W3 스쿨에서 저를 더 잘 사용하는 방법을 이해 도왔다..slice
: 추가 서식 니스 http://blog.stevenlevithan.com/archives/date-time-format을 .
그것으로 당신은 쓸 수 있습니다 :
var now = new Date();
now.format("yyyy/mm/dd");
Date 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();
유럽 (영어 / 스페인어) 형식
현재 요일도 가져와야합니다.이 날짜를 사용할 수 있습니다.
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);
* 스페인어 형식의 경우 WEEK 변수 만 번역하십시오.
var week = new Array('Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado');
결과 : 월요일-16/11/2015 14:24
왜 간단하지 않습니까?
dateObj.toISOString().slice(0, 10) // YYYY-MM-DD
여기를 확인하십시오 :
const date1 = new Date('December 17, 1995 03:24:00');
console.log(date1.toISOString().slice(0, 10))
let dateObj = new Date();
let myDate = (dateObj.getUTCFullYear()) + "/" + (dateObj.getMonth() + 1)+ "/" + (dateObj.getUTCDate());
참고로 아래 세부 사항을 볼 수 있습니다
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)
// 분을 반환합니다 (0-59) new Date (). getMonth () // 월을 반환합니다 (0-11) new Date (). getSeconds () // 초를 반환합니다 (0-59) new Date () .getTime () // 시간을 반환합니다 (1970 년 1 월 1 일 이후의 밀리 초)
날짜 obj 또는 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에서는 일, 월 및 연도를 잡는 데 사용할 수있는 정규식 캡처 그룹을 소개했습니다.
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);
이 방법의 장점은 비표준 문자열 날짜 형식에 대해 일, 월, 년을 잡을 수 있다는 것입니다.
참조 https://www.freecodecamp.org/news/es9-javascripts-state-of-art-in-2018-9a350643f29c/