-2
$("#add").click(function()
{
  $("#content").append("<input type=text name=resource>");
})

我必须使用动态添加文本框,以便如何在 php 中获取这些值。

4

3 回答 3

2

Jquery动态添加:

$("#add").on('click',function()
{
  $("#content").append("<input type=text name=resource[] />");
});

带有 Metod POST 的 PHP 代码:

$data =$_POST['resource'];

对于个人价值观:

foreach($data as $vals)
{
   echo $vals;
}
于 2013-05-02T07:18:43.777 回答
1

干草它只是资源名称作为数组,如资源 []

于 2013-05-02T07:10:43.733 回答
0

if php variable available, then you can add that variable inside the append or anywhere likes following

$("#add").click(function() {
    $("#content").append("input type=text name=resource value="<?php echo $variable; ?>">);
});
于 2013-05-02T08:08:39.497 回答