gpt4 book ai didi

jquery - 加载国家/州/城市

转载 作者:行者123 更新时间:2023-12-01 03:56:06 25 4
gpt4 key购买 nike

我有像国家/州和城市这样的下拉列表。有什么办法可以等到人口下降后再继续进行吗?就像首先加载国家/地区,然后根据选择的国家/地区然后加载州/省,与城市相同......

function populateLists(listType) {
// on success do this:
$.ajax({
type:"POST",
url:"Wizard_Using_PageMethod.aspx/GetCountry",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType:"json"}
});

[WebMethod]
public static CountryList GetCountry()
{
CountryList country = new CountryList();
///go to db and get the data
return country;
}

最佳答案

你可以这样做

$('#cb_country').change(function(){
var id=$(this).val();
$.get('getCity.php',{id:id},function(data){
$("#cb_city").html(data);
});
});

getCity.php:

<?php
require('../conn.php');

$id=$_GET['id'];
$Q=mysql_query("SELECT * FROM city WHERE CountryID='".$id."' ORDER BY Cityname ASC");

do{
echo "<option value='".$row['CityID']."'>".$row['CityName']."</option>";
}
while($row=mysql_fetch_assoc($Q));

关于jquery - 加载国家/州/城市,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2640001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com