02/06/2006, 09:27
|
| | | Fecha de Ingreso: octubre-2004 Ubicación: Argentina
Mensajes: 836
Antigüedad: 20 años, 2 meses Puntos: 4 | |
hola, Cita: <html>
<head>
</head>
<script>
function comprobar(){
r=document.forms[0]['radiobutton'];
if (r[0].checked==false && r[1].checked==false){
alert("debes seleccionar LIBROS o AUTORES");
return false;
}
return true;
}
</script>
<body>
<form id="form2" name="introducir" method="get" action="insercion.php" onsubmit="return comprobar()">
<label>
<input name="radiobutton" type="radio" value="libros" />
Libros<br />
<input name="radiobutton" type="radio" value="autores" />
Autores<br />
<br />
<input type="submit" name="Submit" value="Insertar" />
</label>
</form>
</body>
</html> saludos
__________________ by Capitán Buscapina
. |