我有一个表格让用户选择他们来自哪里..
我已经通过选择框列出了国家/地区列表..
我成功地做到了 onchange 并使用 ajax 读出所有状态列表..
实际上我有两个php文件..一个是包含所有代码的主要文件,包括表单..另一个是生成状态列表..我的ajax代码和表单在主php中
这是生成状态列表的那个...
$cID = $_GET["country"];
$sql = "SELECT * FROM States WHERE CountryID=$cID";
$result = $db->get_results($sql);
if (isset($result)) {
foreach ( $result as $states ) {
?>
<input type="checkbox" name="chkState[]" value="<?=$states->StateID?>" /> <?=$states->StateName?><br />
<?php
}
}
这是我读出的代码的一部分..
但我的问题是...
我在哪里提交表格..
我只得到国家的变量..我不能把使用ajax生成的状态数据拿出来......
我的表格样本
<form action="" name="place">
<select name="cboCountry" class="drop" onchange="showState(this.value)">
//some php code the list out the country
</select>
<div id="txtHint">
</div>
<input type="submit" name="submit" value="submit" />
</form>
这里是我的 ajax 代码
<script>
function showState(str)
{
alert('xxx');
var xmlhttp;
if (str=="")
{
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","state_list.php?country="+str,true);
xmlhttp.send();
}
</script>
所以当我用保存按钮提交时......我只得到国家和州的日期丢失......任何人都可以帮助我吗?或者有什么方法可以做我想做的事?