Salut, je suis nouveau dans javascript j'ai un tel code javascript
alert(DATE.value);
var d = new Date(DATE.value);
var year = d.getFullYear();
var month = d.getMonth();
var day = d.getDay();
alert(month);
alert(day);
if(2012 < year < 1971 | 1 > month+1 > 12 | 0 >day > 31){
alert(errorDate);
DATE.focus();
return false;
}
prenons par exemple: DATE.value = "11/11/1991"
quand j'appelle alert(day);
ça me montre 3
;
quand j'appelle, alert(d);
cela me renvoie des informations correctes.