Ver Mensaje Individual
  #3 (permalink)  
Antiguo 30/10/2008, 12:25
Avatar de the_web_saint
the_web_saint
 
Fecha de Ingreso: mayo-2008
Ubicación: localhost/tierra/america/panama
Mensajes: 1.229
Antigüedad: 16 años, 6 meses
Puntos: 43
Respuesta: Radiobutton y mensaje luego de ser seleccionado.

Código PHP:
<!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=utf-8" />
<
title>Untitled Document</title>
<
script>
function 
mostrarMSG(mensaje)
{
    
document.getElementById('mensaje').innerHTML=mensaje;
}
</script>
</head>

<body>
<form>
<input type="radio" name="opcion" value="Mensaje 1" onclick="mostrarMSG(this.value)" />Mensaje 1
<input type="radio" name="opcion" value="Mensaje 2" onclick="mostrarMSG(this.value)" />Mensaje 2
<input type="radio" name="opcion" value="Mensaje 3" onclick="mostrarMSG(this.value)" />Mensaje 3
</form>
<div id="mensaje"></div>
</body>
</html> 
¿Esto es lo que necesitas? porque no entendi bien cual es el problema...

Saludos
__________________
..::The Saint::..
El pesimista se queja del viento; el optimista espera que cambie; el realista ajusta las velas.