你所需要的只是一个ajax请求。试试这个模板,它不需要 jQuery
Javascript
function ajax_request(destination_url, parameters, output_id) {
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(output_id).innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open("POST", destination_url, false);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.send(parameters);
}
HTML
<select name="state" onselect="ajax_request(get_cities.php, this.value, city_list)" />
<option value="1">Pensilvania</option>
<option value="2">New York</option>
<option value="3">Florida</option>
</select>
<select id="city_list" name="city" />
</select>
您现在需要的是编写get_cities.php
. 在此文件中,根据您使用 ajax 发布的州名,从 MySQL 表中获取国家/地区列表。