Come ottenere la data corrente in jquery?


181

Voglio sapere come utilizzare la funzione Date () in jQuery per ottenere la data corrente in un yyyy/mm/ddformato.

Risposte:


325

Date()non fa parte di jQuery, è una delle funzionalità di JavaScript.

Vedi la documentazione sull'oggetto Date .

Puoi farlo così:

var d = new Date();

var month = d.getMonth()+1;
var day = d.getDate();

var output = d.getFullYear() + '/' +
    (month<10 ? '0' : '') + month + '/' +
    (day<10 ? '0' : '') + day;

Vedi questo jsfiddle per una prova.

Il codice può sembrare complesso, perché deve gestire mesi e giorni rappresentati da numeri inferiori a 10(il che significa che le stringhe avranno un carattere anziché due). Vedi questo jsfiddle per il confronto.


2
Non lo sapevo. Sto cercando di ottenere la data corrente nella guida di jquery.plz.
Sara,

Grazie per la risposta :) Anche se in tutta la mia esistenza non ho mai visto una data formattata come aaaa / mm / gg - è usata in qualche paese? Ho visto yyyy-mm-dd e yyyymmdd
Manachi il

1
@Manachi Sì È utilizzato in Sri Lanka
Sara il

2
Utilizzato anche in Palestina :)
Nada N. Hantouli,

Utilizzato comunemente anche in Corea e in Sudafrica
Muleskinner il

131

Se hai l'interfaccia utente di jQuery (necessaria per il datepicker), questo farebbe il trucco:

$.datepicker.formatDate('yy/mm/dd', new Date());

6
richiede jquery-ui
Alex G,

1
Sì. Ho usato l'interfaccia utente di jQuery, quindi questa soluzione è perfetta per me. Grazie.
Chen Li Yong,

44

jQuery è JavaScript. Usa l' Dateoggetto Javascript .

var d = new Date();
var strDate = d.getFullYear() + "/" + (d.getMonth()+1) + "/" + d.getDate();

3
d.getMonth () Restituisce il mese (da 0 a 11), quindi potrebbe essere sbagliato
Gaurav Agrawal,

2
getMonth()restituisce numeri tra 0e 11. Questo è un errore JavaScript abbastanza comune. toString()Funziona anche in un modo diverso da quello che hai descritto (vedi questo jsfiddle e questa pagina di documentazione ). Per riassumere: nessuna delle soluzioni fornite funziona correttamente.
Tadeck,

1
Il mese non ho scuse, errore che ho fatto prima e non ho imparato da esso! toStringanche se lo giuro ha funzionato, ma ho testato il tuo jsfiddle con Chrome e hai ragione. Rimosso dalla mia risposta. Grazie.
Connell,

31

Utilizzando Javascript puro puoi prototipare il tuo formato AAAAMMGG ;

Date.prototype.yyyymmdd = function() {
  var yyyy = this.getFullYear().toString();
  var mm = (this.getMonth()+1).toString(); // getMonth() is zero-based
  var dd  = this.getDate().toString();
  return yyyy + "/" + (mm[1]?mm:"0"+mm[0]) + "/" + (dd[1]?dd:"0"+dd[0]); // padding
};

var date = new Date();
console.log( date.yyyymmdd() ); // Assuming you have an open console

21

In JavaScript è possibile ottenere la data e l'ora correnti utilizzando l'oggetto Date;

var now = new Date();

Ciò otterrà il tempo della macchina client locale

Esempio per jquery LINK

Se stai usando jQuery DatePicker puoi applicarlo su qualsiasi campo di testo come questo:

$( "#datepicker" ).datepicker({dateFormat:"yy/mm/dd"}).datepicker("setDate",new Date());

Questo otterrà il valore di data e ora completo non quello che voglio.
Sara,

15

Poiché la domanda è taggata come JQuery:

Se stai anche usando JQuery UIpuoi usare $.datepicker.formatDate():

$.datepicker.formatDate('yy/mm/dd', new Date());

Guarda questa demo.


15
function GetTodayDate() {
   var tdate = new Date();
   var dd = tdate.getDate(); //yields day
   var MM = tdate.getMonth(); //yields month
   var yyyy = tdate.getFullYear(); //yields year
   var currentDate= dd + "-" +( MM+1) + "-" + yyyy;

   return currentDate;
}

Funzione molto utile per usarlo, divertiti


2
Questo ha funzionato magnificamente per impostare il valore e quindi una successiva chiamata per nascondere il selettore della data lo ha riparato in ogni browser. ! Neat
nicholeous,

9

Vedere questo .
Il $.now()metodo è una scorciatoia per il numero restituito dall'espressione (new Date).getTime().


9

Ecco il metodo top per ottenere il giorno, l'anno o il mese corrente

new Date().getDate()          // Get the day as a number (1-31)
new Date().getDay()           // Get the weekday as a number (0-6)
new Date().getFullYear()      // Get the four digit year (yyyy)
new Date().getHours()         // Get the hour (0-23)
new Date().getMilliseconds()  // Get the milliseconds (0-999)
new Date().getMinutes()       // Get the minutes (0-59)
new Date().getMonth()         // Get the month (0-11)
new Date().getSeconds()       // Get the seconds (0-59)
new Date().getTime()          // Get the time (milliseconds since January 1, 1970)


6
//convert month to 2 digits<p>
var twoDigitMonth = ((fullDate.getMonth().length+1) === 1)? (fullDate.getMonth()+1) : '0' + (fullDate.getMonth()+1);

var currentDate =  fullDate.getFullYear()+ "/" + twoDigitMonth + "/" + fullDate.getDate();
console.log(currentDate);<br>
//2011/05/19

6

questo oggetto imposta zero, quando l'elemento ha un solo simbolo:

function addZero(i) {
    if (i < 10) {
        i = "0" + i;
    }
    return i;
}

Questo oggetto imposta il tempo pieno, l'ora e la data effettivi:

function getActualFullDate() {
    var d = new Date();
    var day = addZero(d.getDate());
    var month = addZero(d.getMonth()+1);
    var year = addZero(d.getFullYear());
    var h = addZero(d.getHours());
    var m = addZero(d.getMinutes());
    var s = addZero(d.getSeconds());
    return day + ". " + month + ". " + year + " (" + h + ":" + m + ")";
}

function getActualHour() {
    var d = new Date();
    var h = addZero(d.getHours());
    var m = addZero(d.getMinutes());
    var s = addZero(d.getSeconds());
    return h + ":" + m + ":" + s;
}

function getActualDate() {
    var d = new Date();
    var day = addZero(d.getDate());
    var month = addZero(d.getMonth()+1);
    var year = addZero(d.getFullYear());
    return day + ". " + month + ". " + year;
}

HTML:

<span id='full'>a</span>
<br>
<span id='hour'>b</span>
<br>    
<span id='date'>c</span>

VISTA JQUERY:

$(document).ready(function(){
    $("#full").html(getActualFullDate());
    $("#hour").html(getActualHour());
    $("#date").html(getActualDate());
});

ESEMPIO


6

So di essere in ritardo, ma questo è tutto ciò di cui hai bisogno

var date = (new Date()).toISOString().split('T')[0];

toISOString () usa la funzione integrata di javascript.

cd = (new Date()).toISOString().split('T')[0];
console.log(cd);
alert(cd);


5

Puoi farlo anche con moment.js. Includi moment.js nel tuo html.

<script src="moment.js"></script>

E usa il codice sottostante nel file di script per ottenere la data formattata.

moment(new Date(),"YYYY-MM-DD").utcOffset(0, true).format();


3

Cordiali saluti - getDay () ti darà il giorno della settimana ... cioè: se oggi è giovedì, restituirà il numero 4 (essendo il 4 ° giorno della settimana).

Per ottenere un giorno del mese corretto, utilizzare getDate ().

Il mio esempio di seguito ... (anche una funzione di imbottitura di stringa per dare uno 0 iniziale su singoli elementi temporali. (Ad esempio: 10: 4: 34 => 10:04:35)

function strpad00(s)
{
    s = s + '';
    if (s.length === 1) s = '0'+s;
    return s;
}

var currentdate = new Date();
var datetime = currentdate.getDate() 
    + "/" + strpad00((currentdate.getMonth()+1)) 
    + "/" + currentdate.getFullYear() 
    + " @ " 
    + currentdate.getHours() + ":" 
    + strpad00(currentdate.getMinutes()) + ":" 
    + strpad00(currentdate.getSeconds());

Uscita Esempio: 31/12/2013 @ 10:07:49
Se si utilizza getDay (), il risultato sarebbe 4 /12/2013 @ 10:07:49


2

La pagina del plugin jQuery è inattiva. Quindi manualmente:

function strpad00(s)
{
    s = s + '';
    if (s.length === 1) s = '0'+s;
    return s;
}

var now = new Date();
var currentDate = now.getFullYear()+ "/" + strpad00(now.getMonth()+1) + "/" + strpad00(now.getDate());
console.log(currentDate );


2
var d = new Date();

var today = d.getFullYear() + '/' + ('0'+(d.getMonth()+1)).slice(-2) + '/' + ('0'+d.getDate()).slice(-2);

Ora è corretto. d.getMonth () + 1 deve essere calcolato (= impostato tra parentesi) prima di aggiungere '0' davanti alla stringa ...
Filip

2

Questo ti darà la stringa della data corrente

var today = new Date().toISOString().split('T')[0];

1

Puoi farlo:

    var now = new Date();
    dateFormat(now, "dddd, mmmm dS, yyyy, h:MM:ss TT");
     // Saturday, June 9th, 2007, 5:46:21 PM

O qualcosa del genere

    var dateObj = new Date();
    var month = dateObj.getUTCMonth();
    var day = dateObj.getUTCDate();
    var year = dateObj.getUTCFullYear();
    var newdate = month + "/" + day + "/" + year;
    alert(newdate);

1

puoi usare questo codice:

var nowDate     = new Date();
var nowDay      = ((nowDate.getDate().toString().length) == 1) ? '0'+(nowDate.getDate()) : (nowDate.getDate());
var nowMonth    = ((nowDate.getMonth().toString().length) == 1) ? '0'+(nowDate.getMonth()+1) : (nowDate.getMonth()+1);
var nowYear     = nowDate.getFullYear();
var formatDate  = nowDay + "." + nowMonth + "." + nowYear;

puoi trovare una demo funzionante qui


1

Questo è quello che mi è venuto in mente usando solo jQuery. È solo una questione di mettere insieme i pezzi.

        //Gather date information from local system
        var ThisMonth = new Date().getMonth() + 1;
        var ThisDay = new Date().getDate();
        var ThisYear = new Date().getFullYear();
        var ThisDate = ThisMonth.toString() + "/" + ThisDay.toString() + "/" + ThisYear.toString();

        //Gather time information from local system
        var ThisHour = new Date().getHours();
        var ThisMinute = new Date().getMinutes();
        var ThisTime = ThisHour.toString() + ":" + ThisMinute.toString();

        //Concatenate date and time for date-time stamp
        var ThisDateTime = ThisDate  + " " + ThisTime;

0
var d = new Date();
var month = d.getMonth() + 1;
var day = d.getDate();
var year = d.getYear();
var today = (day<10?'0':'')+ day + '/' +(month<10?'0':'')+ month + '/' + year;
alert(today);

Questa è sostanzialmente una copia della risposta accettata, tranne nel formato errato (gg / a / a)
Rob Grzyb,

0

Volevo solo condividere un prototipo di data / ora che ho realizzato usando l'idea di Pierre. Non ci sono abbastanza punti per commentare :(

// US common date timestamp
Date.prototype.timestamp = function() {
  var yyyy = this.getFullYear().toString();
  var mm = (this.getMonth()+1).toString(); // getMonth() is zero-based
  var dd  = this.getDate().toString();
  var h = this.getHours().toString();
  var m = this.getMinutes().toString();
  var s = this.getSeconds().toString();

  return (mm[1]?mm:"0"+mm[0]) + "/" + (dd[1]?dd:"0"+dd[0]) + "/" + yyyy + " - " + ((h > 12) ? h-12 : h) + ":" + m + ":" + s;
};

d = new Date();

var timestamp = d.timestamp();
// 10/12/2013 - 2:04:19

0

Usando jQuery-ui datepicker, ha una pratica routine di conversione della data integrata in modo da poter formattare le date:

var my_date_string = $.datepicker.formatDate( "yy-mm-dd",  new Date() );

Semplice.


0

Ottieni il formato data corrente dd/mm/yyyy

Ecco il codice:

var fullDate = new Date();
var twoDigitMonth = ((fullDate.getMonth().toString().length) == 1)? '0'+(fullDate.getMonth()+1) : (fullDate.getMonth()+1);
var twoDigitDate = ((fullDate.getDate().toString().length) == 1)? '0'+(fullDate.getDate()) : (fullDate.getDate());
var currentDate = twoDigitDate + "/" + twoDigitMonth + "/" + fullDate.getFullYear();
alert(currentDate);

0
function createDate() {
            var date    = new Date(),
                yr      = date.getFullYear(),
                month   = date.getMonth()+1,
                day     = date.getDate(),
                todayDate = yr + '-' + month + '-' + day;
            console.log("Today date is :" + todayDate);

0

È possibile aggiungere un metodo di estensione a javascript.

Date.prototype.today = function () {
    return ((this.getDate() < 10) ? "0" : "") + this.getDate() + "/" + (((this.getMonth() + 1) < 10) ? "0" : "") + (this.getMonth() + 1) + "/" + this.getFullYear();
}

-3
function returnCurrentDate() {
                var twoDigitMonth = ((fullDate.getMonth().toString().length) == 1) ? '0' + (fullDate.getMonth() + 1) : (fullDate.getMonth() + 1);
                var twoDigitDate = ((fullDate.getDate().toString().length) == 1) ? '0' + (fullDate.getDate()) : (fullDate.getDate());
                var currentDate = twoDigitDate + "/" + twoDigitMonth + "/" + fullDate.getFullYear();
                return currentDate;
            }
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.