Sigue igual, asi quedo el codigo del formulario:
Código:
<form name="formularios" id="formularios" onsubmit="corrigiendo()" action="" >
<input type="text" name="nombre" id="nombre" />
<input type="text" name="contraseña" id="contrasenas" />
<input type="submit" name="submit" value="Enviar" />
</form>
Y el codigo de la funcion asi:
Código:
function corrigiendo(){
var nombre = document.getElementById('nombre');
var contrasena= document.getElementById('contrasenas');
var nombres = nombre.value;
var contra = contrasena.value;
if(nombres==""){
errornombre();
return false;
}else{
alert("NOMBRE CORRECTO");
}
if(contra==""){
errorcontra();
return false;
}else{
alert("CONTRASEÑA CORRECTA");
}
}
function errornombre(){
document.getElementById("capademensajes").innerHTML="ERROR DEBE DE PONER UN NOMBRE";
}
function errorcontra(){
document.getElementById("capademensajes").innerHTML="ERROR DEBE DE PONER UNA CONTRASEÑA";
}
Pero sigue pasando lo mismo, no se queda modificado la capa, ¿sera algun error en el codigo html?