salut,
je voudrais écrire la date courante dans une page HTML.
ça me paraissait tout bête jusqu'au moment où je me suis énervé parce que rien ne s'affiche...:sarcastic:
j'ai fait un fichier date.js:
function getMyDate(){
var today = new Date();
var months = new Array("janvier","février","mars","avril",
"mai","juin","juillet","août","septembre"
,"octobre","novembre","décembre" );
document.write(today.getDay() + " " + months[today.getMonths()] + " " + today.getYear());
}
et dans la page HTML j'ai ceci:
<html>
<head>
<title>test javascript</title>
<script language="JavaScript" src="date.js"></script>
</head>
<body>
<p><script language="JavaScript">getMyDate();</script></p>
</body>
</html>
beh ça ne donne rien sous Netscape 4.76 (Linux), ni Opera 5.0 encore moins Mozilla.
j'ai fait une boulette ?
---------------
As the plane took off, the pilot turned to the co-pilot and said, “Have you ever flown solo?” Co-pilot: No. Typically I fly much higher than this.