[javascript]
Fermé
mofo
Messages postés
46
Date d'inscription
mercredi 25 avril 2001
Statut
Membre
Dernière intervention
23 mai 2007
-
9 juil. 2004 à 20:04
Utilisateur anonyme - 22 juil. 2004 à 14:16
Utilisateur anonyme - 22 juil. 2004 à 14:16
A voir également:
- [javascript]
- Telecharger javascript - Télécharger - Langages
- Afficher un tableau javascript en html ✓ - Forum Javascript
- Javascript echo ✓ - Forum PHP
- Erreur #125 javascript - Forum Mozilla Firefox
- A javascript error occurred in the main process - Forum Handicap / Accessibilté
1 réponse
Utilisateur anonyme
22 juil. 2004 à 14:16
22 juil. 2004 à 14:16
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Démo de texte Clignotant - Ph.Fery</title> <!-- Author: Philippe Fery Date: July 22, 2004 philippefery@hotmail.com --> <script> function changeContent(){ msgBoxList = document.getElementsByName("messageBox"); for(i=0 ; i<msgBoxList.length ; i++){ window.status+=i+"..."; msgBoxList[i].innerHTML="Nouveau Contenu"; } } </script> </head> <body> <div name="messageBox" id="messageBox" style="text-align: center; padding: 6 6 6 6; border-width: 1px; border-style: solid; border-color: #ff0000; background-color: yellow; width:140px; height: 40px;">Quelques mots... </div> <p/> <div name="messageBox" id="messageBox" style="text-align: center; padding: 6 6 6 6; border-width: 1px; border-style: solid; border-color: #ff0000; background-color: yellow; width:140px; height: 40px;"> Salut à toi, coureur des bois! </div> <p/> <button onclick="changeContent()">Changer le contenu</button> </body> </html>
;-)