Ver Mensaje Individual
  #6 (permalink)  
Antiguo 31/01/2007, 08:59
Avatar de capa
capa
 
Fecha de Ingreso: octubre-2006
Mensajes: 86
Antigüedad: 17 años, 7 meses
Puntos: 1
Re: acceder al option

Para ver los datos de selec.
Código HTML:
<html>
<head>
<title>Capa</title>
<script>
function datos(){
	var indice = document.form.este.selectedIndex;
	var valor = document.form.este.options[indice].value;
	var contenido = document.form.este.options[indice].text;
	alert("Valor: "+valor+"\nContenido: "+contenido);
}
</script>
</head>
<body>
<form name="form">
<select name="este" onchange="datos()">
<option>Seleccione</option> 
<option>1</option>
<option value="">2</option> 
<option value="tres">3</option> 
<option value="4">
</select>
</form>
<body>
</body>