1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| <html>
<head>
<script langage="javascript">
function test()
{
//valeur de la liste deroulante (texte)
choix=document.getElementById('3').options[document.getElementById('3').selectedIndex].text;
alert(choix);
//je fais pointer la balise link vers la style choisi dans la liste
ch_attrib=document.getElementById("2").setAttribute("href",choix);
//je verifie que ca pointe vers le bon fichier
attrib=document.getElementById("2").getAttribute("href");
alert(attrib);
}
</script>
<LINK id="2" rel="stylesheet" type="text/css" href="init">
</form>
</head>
<body>
<!-- liste déroulante -->
<form name="f" method='post'>
<select id='3'>
<option>style1.css</option>
<option>style2.css</option>
</select>
<input type='button' value='go' onclick="test();">
</form>
</body>
</html> |