Solución:
Esto se hace básicamente para manejar el envío de formularios a través de JavaScript.
Por ejemplo – con fines de validación
Vea el código a continuación y vea cómo puede ser beneficioso:
<script language="JavaScript">
myFunctionName() {
if (document.myForm.myText.value == '')
return false;
// When it returns false - your form will not submit and will not redirect too
else
return true;
// When it returns true - your form will submit and will redirect
// (actually it's a part of submit) id you have mentioned in action
}
</script>
<form name="myForm" onSubmit="return myFunctionName()">
<input type="text" name="myText">
<input type="submit" value="Click Me">
</form>
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)