Начало
Кнопки
Щелкните, чтобы Подчиниться
(Лучше всего с ТО ЕСТЬ), Предотвращают клавишу ENTER от случайной передачи формы. Пользователь теперь ДОЛЖЕН нажать на представить кнопку. Аварийные сообщения не появляются в Netscape.
(Отметьте: Ничто не пошлют нам, щелкая этой кнопкой)!
JavaScript Щелкните, чтобы Подчиниться
<!-- TWO STEPS TO INSTALL CLICK TO SUBMIT: 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 onKeyPress () { var keycode; if (window.event) keycode = window.event.keyCode; else if (e) keycode = e.which; else return true; if (keycode == 13) { alert("Please Click on the Submit button to send this"); return false } return true } document.onkeypress = onKeyPress; // End --> </script> </HEAD> <!-- STEP TWO: Copy this code into the BODY of your HTML document --> <BODY> <input type="text"> <input type=submit> <!-- Script Size: 1.09 KB -->