获取动态文本字段的目标ID

时间:2016-08-05 11:10:27

标签: javascript jquery html

我有一个按钮,可以在点击时添加动态列。我试图获取每列的目标ID。

<div class="input_fields_wrap">
    <button class="add_field_button">Add More Fields</button>
    <div><input type="text" name="mytext[]"></div>
</div>

JS

$(document).ready(function() {
    var max_fields      = 10; //maximum input boxes allowed
    var wrapper         = $(".input_fields_wrap"); //Fields wrapper
    var add_button      = $(".add_field_button"); //Add button ID

    var x = 1; //initlal text box count
    $(add_button).click(function(e){ //on add input button click
        e.preventDefault();
        if(x < max_fields){ //max input box allowed
            x++; //text box increment
            $(wrapper).append('<div><input type="text" name="mytext[]"/><a href="#" class="remove_field">Remove</a></div>'); //add input box
        }
    });

    $(wrapper).on("click",".remove_field", function(e){ //user click on remove text
        alert("target id" + e.target.id); // I get nothing here
        e.preventDefault(); $(this).parent('div').remove(); x--;
    })
});

如何获取目标ID,如果它有一些值,我想在删除动态列添加列之前打印它?

2 个答案:

答案 0 :(得分:1)

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="input_fields_wrap">
    <button class="add_field_button">Add More Fields</button>
    <div><input type="text" name="mytext[]"></div>
</div>
{{1}}

答案 1 :(得分:0)

您没有为列提供ID!

<div>
    <input type="text" name="mytext[]"/>
    <a href="#"class="remove_field"> Remove </a>
</div>

我使用了代码x,var x = 1; //initlal text box count

$(wrapper).append('<div><input type="text" name="mytext[]"/><a href="#" class="remove_field" id='+x+'>Remove</a></div>');

https://jsfiddle.net/7yn7apte/4/