Fonctionne sous IE et Moz :
Le script :
Code :
- <script type="text/javascript">
- <!--
- img0=new Image();
- img0.src="bout.gif";
- img1= new Image();
- img1.src="bout1.gif";
- function React(Num){
- theImage=document.getElementById(Num);
- theSelect=document.getElementById('aa');
- switch(theSelect.value)
- {
- case "1":
- theImage.src=img0.src;
- break;
- case "2":
- theImage.src=img1.src;
- break;
- default:
- }
- }
- -->
- </script>
|
Le select :
Code :
- <select id="aa" onchange="React('image0')">
- <option value="1">1</option>
- <option value="2">2</option>
- </select>
|
L'image :
Code :
- <img src="bout.gif" height="142" width="85" alt="image" id="image0" />
|
Bon, y'a peut-être mieux, mais au moins ça marche
Message édité par Docteur_Canard le 15-03-2004 à 17:16:37