validacion - validar formulario javascript html5
Obtén el año en curso en JavaScript (5)
¿Cómo obtengo el año en curso en JavaScript?
Aquí hay otro método para obtener la fecha.
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)
para el año en curso, podemos usar getFullYear () de la clase Date; sin embargo, hay muchas funciones que puede usar según los requisitos, algunas funciones son como,
var now = new Date()
console.log("Current Time is: " + now);
// getFullYear function will give current year
var currentYear = now.getFullYear()
console.log("Current year is: " + currentYear);
// getYear will give you the years after 1990 i.e currentYear-1990
var year = now.getYear()
console.log("Current year is: " + year);
// getMonth gives the month value but months starts from 0
// add 1 to get actual month value
var month = now.getMonth() + 1
console.log("Current month is: " + month);
// getDate gives the date value
var day = now.getDate()
console.log("Today''s day is: " + day);
para simplificar todas las operaciones relacionadas con el tiempo, puede tener sentido utilizar una biblioteca personalizada como el momento js, el año actual en la hora local sería (devuelve 4 dígitos por año como número):
moment().year();
o en hora UTC:
moment().utc().year();
Cree un new Date()
objeto new Date()
y llame a getFullYear()
.
(new Date()).getFullYear()
// returns the current year
// Return today''s date and time
var currentTime = new Date()
// returns the month (from 0 to 11)
var month = currentTime.getMonth() + 1
// returns the day of the month (from 1 to 31)
var day = currentTime.getDate()
// returns the year (four digits)
var year = currentTime.getFullYear()
// write output MM/dd/yyyy
document.write(month + "/" + day + "/" + year)