First commit 14/09/1997
This commit is contained in:
41
select.htm
Normal file
41
select.htm
Normal file
@ -0,0 +1,41 @@
|
||||
<HTML>
|
||||
|
||||
<HEAD>
|
||||
|
||||
<TITLE>Lista de seleccion</TITLE>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<BODY bgcolor="#00FFFF">
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<CENTER>
|
||||
|
||||
|
||||
|
||||
<h3>Ejemplo de una lista de selección sin botón de submit</h3>
|
||||
<h3>Sólo hay que seleccionar un valor y se ejecuta la instrucción al hacer clik</h3>
|
||||
<center>
|
||||
|
||||
<form>
|
||||
|
||||
<!-- <input type="button" value="ejecutar" onClick="top.location.href=this.form.servicio.options[this.form.servicio.selectedIndex].value;"> -->
|
||||
|
||||
<select name="servicio" size="8" onchange="top.location.href=this.form.servicio.options[this.form.servicio.selectedIndex].value">
|
||||
|
||||
<option value="indice.htm">Indice</option>
|
||||
|
||||
<option value="proposit.htm">Propósito</option>
|
||||
|
||||
<option value="notas.htm">Notas sobre el lenguaje</option>
|
||||
|
||||
<option value="como.htm">Como funciona esto</option>
|
||||
|
||||
<option value="intro.htm">Introducción al HTML</option>
|
||||
|
||||
<option value="estruc.htm">Estructura de un documento</option>
|
Reference in New Issue
Block a user