
09/07/2005, 11:57
|
| | Fecha de Ingreso: abril-2004 Ubicación: México D.F.
Mensajes: 1.724
Antigüedad: 21 años Puntos: 4 | |
Pondré un ejmplo sólo x que es Sábado de reventón y quicena para mi jejee...
<form name="formulario">
<select name="opcion" onchange="verifica()"><option value=0>-- NO UPLOAD --<option value=1>UPLOAD</select>
<span id="myform" style="display:none"><input type="file"></span>
</form>
<script language="vbs">
sub verifica()
if(eval(formulario.opcion.options(formulario.opcio n.selectedIndex).value)=1)then
myform.style.display="inline"
else
myform.style.display="none"
end if
end sub
</script>
Saludos, |