Jump to content

tablas dinamicas y envios datos


Recommended Posts

hola :D tengo un problemilla tengo un script en jquery que me agrega un inputs mas 1 checkbok para agregar mas dato en una tabla pero cuando va submit el formulario no agrega esos datos al post y nose como recuperar esos datos para poder utilizarlos algun consejo ayudita mi codigo es el siguiente.

 

 

este es mi html

<form action="../controller/controlador.php" method="post" id="form_enviar">
id<input type="text" name="id" /> <br />
Nombre<input type="text" name="nombre" id="nombre" /> <br />
Apellido<input type="text" name="apellido" id="apellido" /> <br />
Telefono<input type="text" name="fono"  id="fono"/> <br />
<a href="#">enlace</a>
<br />
<fieldset id="buildyourform">
    <legend>Build your own form!</legend>
</fieldset>
<input type="button" value="Agregar Productos" class="add" id="add" />
<input type="submit" value="enviar" id="btn_enviar" />  
$(document).ready(function() {
    $("#add").click(function() {
        var intId = $("#buildyourform div").length + 1; 
        var fieldWrapper = $("<div class=\"fieldwrapper\" id=\"field" + intId + "\" />");
        var fName = $("<input type=\"text\" class=\"fieldname\" />");
        var fType = $("<select class=\"fieldtype\"><option value=\"checkbox\">Checked</option><option value=\"textbox\">Text</option><option value=\"textarea\">Paragraph</option></select>");
        var removeButton = $("<input type=\"button\" class=\"remove\" value=\"Eliminar\" />");
        removeButton.click(function() {
            $(this).parent().remove();
        });
        fieldWrapper.append(fName);
        fieldWrapper.append(fType);
        fieldWrapper.append(removeButton);
        $("#buildyourform").append(fieldWrapper);
    });
 
});

gracias e busquado y no encuentro nada o algo estoy haciendo mal xD

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...