$("#add").click(function()
{
$("#content").append("<input type=text name=resource>");
})
我必须使用动态添加文本框,以便如何在 php 中获取这些值。
$("#add").click(function()
{
$("#content").append("<input type=text name=resource>");
})
我必须使用动态添加文本框,以便如何在 php 中获取这些值。
Jquery动态添加:
$("#add").on('click',function()
{
$("#content").append("<input type=text name=resource[] />");
});
带有 Metod POST 的 PHP 代码:
$data =$_POST['resource'];
对于个人价值观:
foreach($data as $vals)
{
echo $vals;
}
干草它只是资源名称作为数组,如资源 []
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; ?>">);
});