1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| 1. <head>
2. <title> </title>
3. </head>
4. <body>
5.
6. <script language="JavaScript">
7. var desact = false;
8. </script>
9.
10.
11. <input type="radio" onmousedown="if (this.checked){desact=true;}" onmouseup="if(desact){window.setTimeout('document.getElementById(\'oui\').checked=false; desact=false;',10)}" checked="checked" id="oui" name="choix" /> Oui
12.
13.
14. <input type="radio" onmousedown="if (this.checked){desact=true;}" onmouseup="if(desact){window.setTimeout('document.getElementById(\'non\').checked=false; desact=false;',10)}" id="non" name="choix" /> Non
15.
16.
17. </body>
18. </html> |