compatibilité d'un script ?

compatibilité d'un script ? - Programmation

Marsh Posté le 11-07-2002 à 17:51:13    

je sais j'abuse là, mais vous pouvez me dire si ca marche sur netscape ca. Merci

Code :
  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function lighton()
  5. {
  6. myimage.src="bulbon.gif"
  7. }
  8. function lightoff()
  9. {
  10. myimage.src="bulboff.gif"
  11. }
  12. </script>
  13. </head>
  14. <body>
  15. <img id="myimage" onmousedown="lighton()" onmouseup="lightoff()" src="bulboff.gif" width="100" height="180">
  16. </body>
  17. </html>

Reply

Marsh Posté le 11-07-2002 à 17:51:13   

Reply

Marsh Posté le 11-07-2002 à 18:42:59    

>> myimage.src="bulbon.gif"
 
à remplacer par
 
document.getElementById('myimage';).src = ....
 
qui est compatible w3 et marche donc partout.

Reply

Marsh Posté le 11-07-2002 à 19:05:24    

merci monsieur :)


---------------
oui oui
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed