Ver Mensaje Individual
  #10 (permalink)  
Antiguo 16/01/2010, 14:21
TUTUROSADO
 
Fecha de Ingreso: enero-2010
Mensajes: 1
Antigüedad: 14 años, 10 meses
Puntos: 0
Respuesta: opciones en javascript usuario/contraseña

ESTE CODIGO ESTA MUY BUENO.... PERO QUISIERA EN EN VEZ DE ABRIR UN MENSAJE DE ALERTA ME ABRA UNA PAGINA WEB....
HE PROBADO CAMBIANDO ALGUNOS PARAMETROS Y LO HE LOGRADO QUE ME ABRA LA PAGINA QUE YO QUIERO... PERO CUANDO LE CAMBIO ESOS PARAMETROS ENTRA CON CUALQUIER USUARIO Y CONTRASEÑA... NO HE PODIDO DESENTRAÑAR ESO.... SI ALGUIEN ME AYUA LES ESTARE AGRADECIDOS



<html>
<head>
<script>
Array.prototype.existe = function(x) {
for (i = 0, total = this.length; i < total; i ++) if (this[i] == x) return true;
return false;
}
var usuarios = ["pepe", "paco", "perico"];
var passwords = ["pass1", "pass2", "pass3"];
</script>
</head>
<body>
<form>
<input type="text" name="usuario" />
<button type="button" onclick="usuario.value = prompt('Introduzca usuario')" >usuario</button>
<br />
<input type="password" name="password" />
<button type="button" onclick="password.value = prompt('Introduzca contraseña')" >contraseña</button>
<br />
<button type="button" onclick="alert((!(usuarios.existe(usuario.value)) ||
(passwords.existe(password.value)))? 'Ok' : 'fallida')" >validar</button>
</form>
</body>
</html>