μ?
λ μ§ λ°μ΄ν°λ₯Ό μ΄μ©ν λ μ΄λ€ λ³μμ Date λ₯Ό μ μΈν΄λ λ€ getFullYear, getMonth, getDate λ±μ μ΄μ©νμ¬ μλΌμ κ°λ¨νκ² κ°μ Έμ€κ³ λ νλ€.
νμ§λ§ μ΄λ κ² μ¬μ©νλ©΄ Monthλ 1~12μ ννλ‘ μΆλ ₯μ΄ λκ³ , Dateμ κ²½μ°μλ 1~31μ κ°μ μΆλ ₯ν΄μ£Όκ² λλ€.
λ³΄ν΅ μ‘°ν 쑰건μ μ€μ ν λμλ yyyy-MM-dd ννλ₯Ό μ¬μ©νκ² λλλ° λ§μ΄λ€..
κΈ°μ‘΄
λ¬Έμ κ° λλ μ¬νμ μλλ° μ΄λ° λ‘κ·Έκ° μκΎΈ λ°μνκ² λλ€.
The specified value "2023-1-3" does not confirm to the required format, "yyyy-MM-dd"
λμΆ© λ
ΈλμμΈ κ²μ 보μνλ μμμ λ³νν΄μ μ μ©νκ³ μλ κ±΄κ° μΆκΈ°λ νμ§λ§
λμ κ±°μ¬λ¦¬λ―λ‘ ν΄κ²°ν΄λ³΄λλ‘ νμ.
κΈ°μ‘΄ μ½λμμλ
let date = new Date();
.
.
.
document.getElementById('searchdate').value =
(today.getFullYear()) + "-"
+ (today.getMonth()+1) + "-"
+ today.getDate();
μ΄λ κ² searchdate κ°μ μ μ©ν΄μ£Όκ³ μμλ€.
λ΄κ° νμ°Έ κ°λ°νλ λλ.. 10~12μμ΄λΌ μ΄λ° λ©μΈμ§λ₯Ό μ ν λ³Ό μ μμκ³
κΈ°λ³Έκ° λ°μΈλ©μμλ§ μ΄ μ½λλ₯Ό μ¬μ©νκ³ μμ΄ 1μμ΄ λ μ§κΈμμΌλ λ¬Έμ λ₯Ό λ°κ²¬ν μ μμλ κ²
κ°μ
let date = new Date();
.
.
.
document.getElementById('searchdate').value =
(today.getFullYear()) + "-"
+ ("00"+(today.getMonth()+1).toString()).slice(-2) + "-"
+ ("00"+(today.getDate().toString())).slice(-2);
getFullYear μλ λ¬Έμ κ° λ°μνμ§ μμΌλ―λ‘ κ·Έλλ‘ λκ³
getMonth λ getDate μ κ²½μ° 00μ λΆν λ€μμ λ€μ λκ°λ§ μλΌμ μ°κ² λ€ λΌκ³ ν΄μ€¬λ€.
κ·Έλ¬λ©΄ νμ리 μμ κ²½μ°μλ λΉκ³΅κ°μ 0μ΄ λΆμ΄μ λμ¬ κ²μ΄κ³ , λμ리 μλ κ·Έλλ‘ μΆλ ₯μ΄ λλ€.