»
AnglaisFrançaisVietnamien

Imprimer - Emulation de la touche de tabulation - JavaScriptBank.com

Version complète: jsB@nk » Form » Emulation de la touche de tabulation
URL: https://www.javascriptbank.com/tab-key-emulation.html

Emulation de la touche de tabulation © JavaScriptBank.comL'onglet clé n'est plus nécessaire à l'onglet entre les champs. L'utilisateur peut passer à la prochaine forme champ en appuyant simplement sur la touche au lieu de la touche TAB. Utiles avec 10-clé formulaire de saisie. Qu'est-ce qu'un heure gagné!

Version complète: jsB@nk » Form » Emulation de la touche de tabulation
URL: https://www.javascriptbank.com/tab-key-emulation.html



JavaScript
<SCRIPT LANGUAGE="JavaScript">// Ronnie T. Moore<!-- Beginnextfield = "box1"; // name of first box on pagenetscape = "";ver = navigator.appVersion; len = ver.length;for(iln = 0; iln < len; iln++) if (ver.charAt(iln) == "(") break;netscape = (ver.charAt(iln+1).toUpperCase() != "C");function keyDown(DnEvents) { // handles keypress// determines whether Netscape or Internet Explorerk = (netscape) ? DnEvents.which : window.event.keyCode;if (k == 13) { // enter key pressedif (nextfield == 'done') return true; // submit, we finished all fieldselse { // we're not done yet, send focus to next boxeval('document.yourform.' + nextfield + '.focus()');return false;      }   }}document.onkeydown = keyDown; // work together to analyze keystrokesif (netscape) document.captureEvents(Event.KEYDOWN|Event.KEYUP);//  End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<form name=yourform>Box 1: <input type=text name=box1 onFocus="nextfield ='box2';"><br>Box 2: <input type=text name=box2 onFocus="nextfield ='box3';"><br>Box 3: <input type=text name=box3 onFocus="nextfield ='box4';"><br>Box 4: <input type=text name=box4 onFocus="nextfield ='done';"><br><input type=submit name=done value="Submit"></form><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->