Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.prototype.setYear()

Wycofywany
This feature has been removed from the Web standards. Though some browsers may still support it, it is in the process of being dropped. Do not use it in old or new projects. Pages or Web apps using it may break at any time.

Podsumowanie

Ustawia rok dla określonej daty stosownie do czasu lokalnego. Aby móc korzystać z roczników przed i po roku 2000, powinieneś użyć metody setFullYear() zawierającej setYear(), która rok potrafi określić w pełni.

Składnia

dateObj.setYear(yearValue)

Parametry

yearValue 
Liczba całkowita.

Opis

Jeśli yearValue jest liczbą pomiędzy 0 a 99 (inclusive), to rok dla dateObjectName jest ustawiany - 1900 + yearValue. W innym przypadku, rok dla dateObjectName jest ustawiany w postaci wyświetlenia yearValue.

Przykłady

Przykład: Zastosowanie setYear()

Dwie pierwsze linie ustawiają rok w dacie na 1996. Trzecia ustawia rok na 2000.

var theBigDay = new Date();

theBigDay.setYear(96)
theBigDay.setYear(1996)
theBigDay.setYear(2000)

Zobacz także

Autorzy i etykiety dokumentu

 Autorzy tej strony: teoli, Ptak82
 Ostatnia aktualizacja: teoli,