Ver Mensaje Individual
  #6 (permalink)  
Antiguo 05/05/2011, 23:02
InKarC
 
Fecha de Ingreso: noviembre-2005
Mensajes: 426
Antigüedad: 19 años, 1 mes
Puntos: 87
Respuesta: Completar un formulario con javascript

Debe haber un problema con tu codigo, los <input> añadidos dinamicamente siempre pasan la informacion, ejemplo:

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Documento sin título</title>
  5. </head>
  6.  
  7. <?php
  8. print('<pre>');
  9. print_r($_POST);
  10. print('</pre>');
  11.  
  12. ?>
  13.  
  14. window.onload = function(){
  15.  
  16.  
  17. document.getElementById("change_form").onclick = function(){
  18.    
  19.     var el_form = document.getElementById("form");
  20.     el_form.innerHTML += "<input type='text' name='hentai' />";
  21.     var contenido = el_form.parentNode.innerHTML
  22.     el_form.parentNode.innerHTML = contenido;
  23.     return false;
  24.     //var contenedor = document.getElementById("contenedor_form").innerHTML;   
  25.  
  26. }
  27.    
  28. }
  29. <a id="change_form" href="#" >Agregar campo a formulario</a> |
  30.  
  31. <div id="contenedor_form">
  32. <form id="form" method="post" action="testculo.php">
  33. <input type="text" name="titulo_del_hentai" /> <input type="checkbox" /> <input id="submit" type="submit" />
  34. </form>
  35. </div>
  36. </body>
  37. </html>

Coloca todo el formulario que tienes y todo el javascript a ver.