Javascript: Exemple d’affichage jour, mois et année

Author:

Javascript: Exemple d'affichage jour, mois et année
Download

<html>
  <head>
 
  </head>
  <body>
     <html>
<head>
 
</head>
<body>
<script type="text/javascript">
update = new Date(document.lastModified);
mois = update.getMonth() + 1;
jour = update.getDate();
annee = update.getFullYear();
document.writeln("<I>Date du jour:" + mois + "/" + jour + "/" + annee + 
    "</I>");
</script>
</body>
</html>
 
 
 
 
  </body>
</html>

Cet article Javascript: Exemple d’affichage jour, mois et année est apparu en premier sur .