26/04/2003, 15:45
|
| | | Fecha de Ingreso: abril-2003 Ubicación: Spain is different
Mensajes: 310
Antigüedad: 21 años, 7 meses Puntos: 0 | |
Mejor y más simple en la vida.
Pero a mi juicio creo q las etiquetas de cierre de head y script estan en orden equivocado....
<head>
<script language="JavaScript">
function jsvalida()
{
if(document.frm.texto.value=="")
{
alert("ingrese valor..");
document.frm.texto.focus();
return false;
}
return true;
}
function jsaccion()
{
if (jsvalida())
{
var strUrl = "http://www.algo.com/pagina.html";
document.frm.action=strUrl;
document.frm.submit();
}
} </script>
</head>
<body>
<form name=frm>
<input type=text name=texto value==>
<input typee=button value=aceptar onclick="javascript:jsaccion();">
</body>
Salu2 |