En estos momentos estoy realizando una pagina re requerimientos y entre tantas opciones necesito crear nuevas filas dinamicamente. Para eso necesito programar un boton q al momento de darle click cree una nueva fila pa llenar nuevos campos..la verdad no tengo mucha idea de como hacerlo, aunq algunas personas me han dicho que con ajax es posible pero la verdad no tengo conocimiento de ello. Estoy trabajando con php y quisiera que me ayuden para realizarlo con alguna funcion de javascript.
Les pongo a continuacion mi codigo en html:
Código HTML:
</table> <table border="1" frame="border" rules="groups"> <colgroup><col style="width: 8em" /></colgroup> <colgroup><col style="width: 8em" /></colgroup> <colgroup><col style="width: 5em" /></colgroup> <colgroup><col style="width: 5em" /></colgroup> <colgroup><col style="width: 5em" /></colgroup> <colgroup><col style="width: 3em" /></colgroup> <colgroup><col style="width: 4em" /></colgroup> <colgroup><col style="width: 7em" /></colgroup> <colgroup><col style="width: 7em" /></colgroup> <colgroup><col style="width: 4em" /></colgroup> <colgroup><col style="width: 4em" /></colgroup> <thead> <tr> <th><p class="texto">SITIO ORIGEN (DIRECCIÓN)</p></th> <th><p class="texto">SITIO DESTINO (DIRECCIÓN)</p></th> <th><p class="texto">CONTACTO DESTINO</p></th> <th><p class="texto">TELÉFONO DESTINO</p></th> <th><p class="texto">MEDIO DE TRANSMISIÓN/ÚLT. MILLA</p></th> <th><p class="texto">BW (Kbps)</p></th> <th><p class="texto">PLAN</p></th> <th><p class="texto">SERVICIOS CONTRATADOS (TÚNEL IP O INTERNET)</p></th> <th><p class="texto">PRECIO MENS.</p></th> <th><p class="texto">PRECIO INSTAL.</p></th> <th></th> </tr> </thead> <tbody> <tr> <td align="center"><input type="text" name="sitio_origen" size="12"></td> <td align="center"><input type="text" name="sitio_destino" size="12"></td> <td align="center"><input type="text" name="contacto_destino" size="10"></td> <td align="center"><input type="text" name="telefono_destino" size="8"></td> <td align="center"><input type="text" name="medio_transmision" size="15"></td> <td align="center"><input type="text" name="bw" size="3"></td> <td align="center"><input type="text" name="plan" size="7"></td> <td align="center"><input type="text" name="servicios_contratados" size="12"></td> <td align="center"><input type="text" name="precio_mensual" size="5"></td> <td align="center"><input type="text" name="precio_instalacion" size="5"></td> <td><input type="button" value="+" align="right"></td> </tr> </tbody> </table><br>
GRACIAS