从动态文本框中获取值?

时间:2013-11-07 02:27:02

标签: php jquery

我有这个代码创建一个文本框,每个文本框都有自己唯一的ID,例如textbox1,textbox2等等。我在提交数据时遇到了麻烦,因为文本框是动态的,你不会知道用户创建了多少文本框。所以我不知道如何发布数据,例如。$ _POST ['textbox']。

$(document).ready(function(){

    var counter = 2;

    $("#addButton").click(function () {

    if(counter>10){
            alert("Only 10 textboxes allow");
            return false;
    }   

    var newTextBoxDiv = $(document.createElement('div'))
         .attr("id", 'TextBoxDiv' + counter);

    newTextBoxDiv.after().html('<input type="text" name="txtLine' + counter + '" id="txtLine' + counter + '" placeholder="Line#' + counter +' " >');

    newTextBoxDiv.appendTo("#TextBoxesGroup");


    counter++;
     });

1 个答案:

答案 0 :(得分:2)

您可以使用方括号提交表单元素,并将所有表单输入作为数组发布:

<form method="post" action="form.php">
  <input name="txtLine[]" />
  <input name="txtLine[]" />
  <input name="txtLine[]" />
  <input type="submit" />
</form>

然后,您可以在类似$_POST["txtLine"]

的数组中访问所有这些内容

$_POST的输出:

Array
(
    [txtLine] => Array
        (
            [0] => hey
            [1] => there
            [2] => jack
        )

)