Date.getDay () javascript restituisce il giorno sbagliato


146

Ciao sono nuovo in javascript ho tale codice javascript

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;
}

prendiamo ad esempio: DATE.value = "11/11/1991"

quando chiamo alert(day);mi mostra 3;
quando chiamo alert(d);mi restituisce informazioni corrette.


Risposte:


330

utilizzare .getDateinvece di .getDay.

Il valore restituito da getDay è un numero intero corrispondente al giorno della settimana: 0 per domenica, 1 per lunedì, 2 per martedì e così via.


154
Davvero stupido che il progettista di questa funzione non l'ha chiamata getDayOf Week. No, sarebbe stato troppo ovvio.
AndroidDev,

41
@AndroidDev Sono d'accordo! Inoltre con .getDateuno ci si aspetterebbe di essere restituito la data completa, non solo il giorno.

47
Ecco di più: la funzione getMonth restituisce un numero intero compreso tra 0 e 11, con 0 per gennaio e 11 per dicembre. Devono fumare roba pesante laggiù
Taralex,

13
Ecco ancora di più: getYear () in realtà l'anno meno 1900!
Guilhem Fry,

Design totalmente incongruente ~Date.getYear() okay, Date.getMonth() okay, Date.getDate() what?
Eddie B



5

Ho avuto un problema simile. date.getMonth()restituisce un indice che varia da 0 to 11. Gennaio è 0. Se si crea un nuovo oggetto date()e si desidera ottenere informazioni su una data del costum, non quella corrente, è necessario ridurre solo il mese di 1.

In questo modo :

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()];
}

Fantastico Sven ... questa è la soluzione per il mio, meno uno alla falena ... grazie.
juanram0n,

1
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)
}

e chiama con questo codice

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

1

D'ora in poi probabilmente vorrai usare le seguenti funzioni per gli oggetti 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));

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.