("0" + this.getDate()).slice(-2)
for the date, and similar:
("0" + (this.getMonth() + 1)).slice(-2)
for the month.
근데 이것만으로는 안된다. 1월일때 -3 개월하면... -2라고 들어간다;
해서
d.setMonth(d.getMonth()-3);
이런식으로 setMonth 를 해야한다.
'IT > WEB' 카테고리의 다른 글
tistory 에서 글쓰기 버튼이 없는 경우? (0) | 2023.01.14 |
---|---|
티스토리 Yzngal 스킨 본문 폰트 크기/사이즈 조절 (0) | 2017.09.15 |
intellij 의 inspection 주의... (0) | 2016.09.20 |
browser... custom protocol detection schema 커스텀 프로토콜 (0) | 2015.07.30 |
Windows Internet Explorer 11 팝업이 타겟 진행 문제... (0) | 2014.05.12 |