Oups, j'avais oublié de dire que j'utilise du standard XHTML.
Cela dit j'ai trouvé mon bonheur. En voici le code si ça peut intéressé quelqu'un:
Code :
- <html>
- <head>
- <script language="JavaScript">
- function donner_focus(chp)
- {
- document.getElementById(chp).focus();
- }
- </script>
- </head>
- <body onload="donner_focus('champ2')">
- <form>
- Champ 1 <input type="text" value="" id="champ1" tabindex=3><br>
- Champ 2 <input type="text" value="" id="champ2" tabindex=2><br>
- Champ 3 <input type="text" value="" id="champ3" tabindex=1>
- </form>
- </body>
- </html>
|
Merci quand même bonne soirée.
Message édité par Hamy le 23-10-2009 à 23:39:19