$(document).ready(function(){
$("#country").load("country.php");
$("#state").load("state.php");
$("#country").change(function(){
switch($("#country").val()){
case "aus":$("#state").load("aus_state.php");break
case "eng":$("#state").load("eng_countie.php");break
case "usa":$("#state").load("us_state.php");break
}
});
});
我有一个动态选择选项,国家-> 州,使用 jquery 加载文件。但是我需要从数据库中自动选择选项。前任。如果用户的数据库所在国家/地区是美国,则该选项将自动选择美国。
像这样的东西
$country=$data['country'];//query from DB
if($("#country").val()==<?PHP echo $country;?>){select the option...}