File "fecha.js"
Full Path: C:/wamp64/www/APPSST/js/fecha.js
File size: 498 bytes
MIME-type: text/plain
Charset: utf-8
const fechaIngresoInput = document.getElementById('fechaIngreso');
// Crear una nueva fecha y formatearla como YYYY-MM-DD
const hoy = new Date();
const anio = hoy.getFullYear();
const mes = ('0' + (hoy.getMonth() + 1)).slice(-2); // Agregar ceros iniciales si es necesario
const dia = ('0' + hoy.getDate()).slice(-2); // Agregar ceros iniciales si es necesario
const fechaActual = `${anio}-${mes}-${dia}`;
// Establecer el valor del campo de fecha
fechaIngresoInput.value = fechaActual;