doonbfez815298 2014-10-24 20:40
浏览 169
已采纳

ajax发送动态创建的输入框的值

I would like to send the values of dynamically generated input boxes to the php page. I got the below code which appends input box on click from another question and was wondering how could I be able to pass the values as an array to php page. can someone help me out?

<fieldset id="buildyourform">
<legend>Build your own form!</legend>
</fieldset>
<button class='sbn'>Add</button><!--this adds input boxes-->
<button class=submit">submit</button>a

$(document).ready(function() {
$(".sbn").click(function() {
    var intId = $("#buildyourform div").length + 1;
    var fieldWrapper = $("<div class='fieldwrapper' id='field' + intId + '>");
    var fName = $("<input type='text' class='fieldname form-control xd'/>");
    var removeButton = $("<input type='button' class='remove btn btn-primary' value='-' />");
    removeButton.click(function() {
        $(this).parent().remove();
    });
    fieldWrapper.append(fName);
    fieldWrapper.append(removeButton);
    $("#buildyourform").append(fieldWrapper);
});

$('.submit').click(function(){
    $.ajax({
        method:'POST',
        url:'test.php',
        data:{},
        success:function(response){
            //
        }
    });

 });
 });
  • 写回答

2条回答 默认 最新

  • dongzhengzhong1282 2014-10-24 20:45
    关注

    Corrected many items in the code. Here is the form (with proper form tags added) -

    <form name="myForm" action="" method="post">
    <fieldset id="buildyourform">
        <legend>Build your own form!</legend>
    </fieldset>
    </form>
    <button class='sbn'>Add</button>
    <!--this adds input boxes-->
    <button class="submit">submit</button>
    

    Here is the jQuery -

    $(".sbn").click(function () {
        var intId = $("#buildyourform div").length + 1;
        var fieldWrapper = $("<div class='fieldwrapper' id='field' + intId + '>");
        var fName = $("<input name='foo[]' type='text' class='fieldname form-control xd'/>"); // name added to element
        var removeButton = $("<input type='button' class='remove btn btn-primary' value='-' />");
        removeButton.click(function () {
            $(this).parent().remove();
        });
        fieldWrapper.append(fName);
        fieldWrapper.append(removeButton);
        $('#buildyourform').append(fieldWrapper);
    });
    
    $('.submit').click(function () {
        var formValues = $('.fieldname').serialize(); // gathers all of the form data from the elements with the class fieldname
        $.ajax({
            method: 'POST',
            url: '/echo/html/', // this is for the jsfiddle test, change to your URL
            data: formValues, // put the variable here
            success: function (response) {
                //
            }
        });
    });
    

    Most notably here is the addition of a name to the input fields and serializing only the ones that we want. You cannot post an input without a name, it just fails silently. Here is a working example Open the browsers console to see the posted data.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)