我有一个MySQL表,其中包含country code
,state
,postcode
,city
等字段。我想创建一个表单,当用户输入国家代码AU
时,状态字段应填充与国家/地区代码对应的状态。当选择状态时,它应该只显示处于选定状态的邮政编码。选择邮政编码后,该值的城市应显示在城市字段上。
数据库中的某些行是:
| country | state | postcode | suburb |
+---------+-------+----------+-----------+
| AU | VIC | 3000 | Melbourne |
| AU | NSW | 3006 | Sydney |
所以现在我有了这个AJAX代码,它将数据发送到另一个PHP文件:
function searchq5(){
var searchTxt = $("input[name='ccd']").val();
$.post("search-region.php", {searchVal: searchTxt}, function(state){
$("#state").html(state);
searchq6();
});
}
function searchq6(){
var searchsub = $("input[name='region']").val();
$.post("search-suburb.php", {searchVal: searchsub}, function(sbb){
$("#sbb").html(sbb);
searchq7();
});
}
search-region.php
:
if (isset($_POST['searchVal'])){
$searchq = $_POST['searchVal'];
$query = mysqli_query($link, "SELECT DISTINCT state FROM `wp_locations` WHERE `country` LIKE '%".$searchq."%' ")or die("Could not search!");
$count = mysqli_num_rows($query);
if($count == 0){
$output = '<option>No results!</option>';
}else{
while($row = mysqli_fetch_array($query)){
$state = $row['state'];
?>
<option value="<?php echo $state; ?>"><?php echo $state; ?></option>
<?php
} // while
} // else
}
search-suburb.php
:
if (isset($_POST['searchsub'])){
$searchq = $_POST['searchsub'];
$query = mysqli_query($link, "SELECT DISTINCT title FROM `wp_locations` WHERE `state`='$searchq' ")or die("Could not search!");
$count = mysqli_num_rows($query);
if($count == 0){
$output = '<option>No results!</option>';
}else{
while($row = mysqli_fetch_array($query)){
$suburb = $row['title'];
?>
<option value="<?php echo $suburb; ?>"><?php echo $suburb; ?></option>
<?php
} // while
} // else
} // main if
我的想法是,当选择状态时,该输入框的值将作为搜索值发送到select-suburb.php
。没有任何东西可以作为郊区的选择。我没有得到其他PHP文件的结果。有人可以告诉我一个解决方案吗?
答案 0 :(得分:-1)
您是否尝试使用&#34; async:false&#34;选项?由于ajax请求是异步的,因此在请求完成之前将调用第二个方法。
$.ajaxSetup({async: false});
请求,并在放完后:
$.ajaxSetup({ async: true });