我有一个动态表格。根据用户使用 php 和 ajax 从下拉列表中选择的未知数量的新输入字段被添加到表单中。问题是当我提交表单时,它会忽略那些使用 ajax 生成的输入。我究竟做错了什么?
xmlhttp.onreadystatechange=function()
{
.
.
.
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("1").innerHTML="Proceed.";
document.getElementById("5").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","invoice_ajax.php?q="+ test,true);
xmlhttp.send();
我在哪里放置新的输入
<form method="post" NAME="mainform" action="pdfinvoice.php">
<div><input type="hidden" readonly name="Owner_City" value="<?php Get_City();?>"></div>
<div><input type="hidden" readonly name="Owner_Post" value="<?php Get_post();?>"></div>
...
<div> <span id="5">Ajax inputs</span></div>
</form>