Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Documento sin título</title> <script> function validar() { with (document.form1) { if (respuesta1.value=="84") { alert("respuesta correcta") } else { alert("respuesta incorrecta la respuesta correcta es 64") } } } </script> </head> <body> <form id="form1" name="preguntas" method="post" action=""> 1.-¿Cuantas casillas tien un tablero de ajedrez? <input type="radio" id="respuesta1" name="respuesta1" value="48" onclick="return validar()"/>a) 48 <input type="radio" id="respuesta1" name="respuesta1" value="64" onclick="return validar()"/>b) 64 <input type="radio" id="respuesta1" name="respuesta1" value="84" onclick="return validar()"/>c) 84 <br /><br /> <!--<input type="submit" name="enviar" value="Enviar respuesta" onclick="return validar()" />--> </form> </body> </html>