<input id="datePicker" type="date" />
imposterò la data odierna in datepicker tipo di input data in chrome.
$(document).ready( function() {
var now = new Date();
var today = now.getDate() + '/' + (now.getMonth() + 1) + '/' + now.getFullYear();
alert(today);
$('#datePicker').val(today);
});
ma non funziona
Modifica questo jsFiddle - Prova in Chrome.
its not working
?
$('#datePicker').val();
dato"2012-09-10"
e questo non è il formato che usi per impostare la data