[javascript] Date.getDay () 자바 스크립트가 잘못된 날을 반환합니다.

안녕하세요, 저는 자바 스크립트를 처음 사용합니다.

alert(DATE.value);
var d = new Date(DATE.value);
var year = d.getFullYear();
var month = d.getMonth();
var day = d.getDay();
alert(month);
alert(day);
if(2012 < year < 1971 | 1 > month+1 > 12 | 0 >day > 31){
    alert(errorDate);
    DATE.focus();
    return false;
}

예를 들어 : DATE.value = "11/11/1991"

내가 부를 때 alert(day);그것은 나를 보여준다 3;
내가 전화 alert(d);하면 올바른 정보를 반환합니다.



답변

.getDate대신에 사용하십시오 .getDay.

getDay에 의해 리턴되는 값은 요일에 해당하는 정수입니다. 0은 일요일, 1은 월요일, 2는 화요일 등입니다.


답변

getDay()요일을 반환합니다. 그러나이 getDate()방법을 사용할 수 있습니다 .

https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Date/getDay


답변

getDay()요일을 알려줄 것입니다. 찾고 있습니다 getDate().


답변

나는 비슷한 문제가 있었다. date.getMonth()에서 범위의 색인을 반환합니다 0 to 11. 1 월은 0입니다. 새 date()오브젝트를 작성하고 현재 날짜가 아닌 비용 날짜에 대한 정보를 얻으려면 월만 줄여야합니다 1.

이처럼 :

function getDayName () {
var year = 2016;
var month = 4;
var day = 11;

var date = new Date(year, month-1, day);
var weekday = new Array("sunday", "monday", "tuesday", "wednesday",
                    "thursday", "friday", "saturday");

return weekday[date.getDay()];
}


답변

function formatDate(date, callback)
{
var weekday = new Array("Sunday", "Monday", "Tuesday", "Wednesday",     "Thursday", "Friday", "Saturday");
var day = weekday[date.getDay()];
console.log('day',day);
var d = date.getDate();
var hours = date.getHours();
ampmSwitch = (hours > 12) ? "PM" : "AM";
if (hours > 12) {
    hours -= 12;

}
else if (hours === 0) {
    hours = 12;
}
var m = date.getMinutes();
var months = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
var month = months[date.getMonth()];
var year = date.getFullYear();
newdate = day + ', ' + month + ' ' + d + ',' + year + ' at ' + hours + ":" + m + " " + ampmSwitch
callback(newdate)
}

이 코드로 전화

date="Fri Aug 26 2016 18:06:01 GMT+0530 (India Standard Time)"
formatDate(date,function(result){
   console.log('Date=',result);
 });


답변

이제부터는 Date 객체에 다음 함수를 사용하려고합니다.

    function dayOf(date)
    {
        return date.getDate();
    }

    function monthOf(date)
    {
        return date.getMonth() + 1;
    }

    function yearOf(date)
    {
        return date.getYear() + 1900;
    }

    function weekDayOf(date)
    {
        return date.getDay() + 1;
    }

    var date = new Date("5/15/2020");
    console.log("Day: " + dayOf(date));
    console.log("Month: " + monthOf(date));
    console.log("Year: " + yearOf(date));


답변