Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/02/2011, 13:37
Fsg
 
Fecha de Ingreso: junio-2009
Mensajes: 155
Antigüedad: 15 años, 5 meses
Puntos: 5
Respuesta: Problema con formulario en javascript

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?