Ver Mensaje Individual
  #4 (permalink)  
Antiguo 17/07/2008, 14:46
Avatar de Adler
Adler
Colaborador
 
Fecha de Ingreso: diciembre-2006
Mensajes: 4.671
Antigüedad: 17 años, 10 meses
Puntos: 126
Respuesta: ayuda con input text

Hola, Captainfercho ¿que tal?

Prueba así

Código PHP:
<script type="text/javascript">

function 
mostrarInput (txtbox) { 
        
elemento document.getElementById("c_"+txtbox);  
    if (
elemento.type == "hidden"
    { 
    
elemento.type =   elemento.type ="text"
    
}   
        } 
</script>
</head>
<body>

<form name="creatext">
<table align=center border="1">
<tr>
<td>Campo</td>
<td>Texto</td>
<td>Crear Campo</td>
</tr>
<tr>
<td><input type="hidden" id="c_t1" name="c_t1" /></td>
<td>Un texto cualquiera</td>
<td><input type="button" value="Crear Campo" id="t1" onclick="mostrarInput(this.id)" /></td>
</tr>
<tr>
<td><input type="hidden" id="c_t2" name="c_t2" /></td>
<td>Un texto cualquiera</td>
<td><input type="button" value="Crear Campo" id="t2" onclick="mostrarInput(this.id)" /></td>
</tr>
</table>
</form> 
Gracias a David el Grande

Suerte
__________________
Los formularios se envían/validan con un botón Submit
<input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" />