Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/05/2005, 07:53
Avatar de pereztroff
pereztroff
 
Fecha de Ingreso: junio-2002
Ubicación: En la Internet.
Mensajes: 4.068
Antigüedad: 22 años, 6 meses
Puntos: 5
cualquier ayuda sera buena.
me plantee ese problema pero no tengo nada claro la estructura a usar. una manito please.

puse lo siguiente:

<HTML>
<head> <title> prueba edades </title>

<Script Language="JavaScript">
function mayor(edad)
{
if (edad>18) alert("Eres mayor de edad"); else alert("No eres mayor de edad");
}
</script>
</head>
<body>
texto:
<input type="text" name="nombre">
<br>
<input type="button" value="Calcular"
onClic="mayor(this)">
</body>
</html>


y no produce el efecto pedido.

¿Por qué?