Начало
Формы
Замените Характеры
Заменяет характер или многократные характеры в textbox, когда посетитель идет в следующую область (или в этом примере, щелкает представить кнопкой)
[ In this example, all "a" characters are changed to "z" ]
JavaScript Forms: Замените Характеры
<!-- TWO STEPS TO INSTALL REPLACE CHARACTERS: 1. Copy the coding into the HEAD of your HTML document 2. Add the last code into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function replaceChars(entry) { out = "a"; // replace this add = "z"; // with this temp = "" + entry; // temporary holder while (temp.indexOf(out)>-1) { pos= temp.indexOf(out); temp = "" + (temp.substring(0, pos) + add + temp.substring((pos + out.length), temp.length)); } document.subform.text.value = temp; } // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <center> <form name="subform"> <input type=text name=text size=40 value="abcdabcd"><br> <input type=button name=action value="Done!" onClick="replaceChars(document.subform.text.value);"> <!-- Or to make it change when the user clicks the next --> <!-- field, use this instead of the previous two lines: --> <!-- <input type=text name=text size=40 value="abcdabcd" onBlur="replaceChars(this.value);"> --> </form> </center> <!-- Script Size: 1.09 KB -->