1

我有一个动态表格。根据用户使用 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>
4

1 回答 1

0

我认为为了节省时间和更容易开发以及跨浏览器,您应该使用 jQuery 来处理 ajax 请求。加载框后,您可以参考此主题jQuery set selected value in option box

于 2013-03-15T03:26:55.263 回答