29/08/2006, 01:38
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 22 años, 11 meses Puntos: 61 | |
La forma de añadir nuevas opciones en un select es muy sencillo.
Primero creas la opción:
pepe=new Option(texto,valor);
y luego la añades:
lis = document.getElementById("lista").options;
lis[lis.length]=pepe;
La forma de añadirlo sería cambiando el valor de lis por:
lis=opener.document.getElementById("lista").option s;
Un ejemplo:
Código:
html>
<head>
<title>Untitled</title>
</head>
<body>
<select id="lista"></select>
<script>
pepe=new Option('texto','valor');
lis=document.getElementById("lista").options;
lis[lis.length]=pepe;
</script>
</body>
</html>
Si necesitas más explicación dilo.
Un saludo!
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |