多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# 1、资料说明 包含三张表,sheng、shi、xian。 ![](https://img.kancloud.cn/19/24/192435d0fab77a1bfb8ee932cb7d7b63_1116x414.png) 查询所有的省:select * from sheng; 查询河北省中的市:select * from shi where ProvinceCode = 130000; 查询石家庄市的县:select * from xian where CityCode = 130100; # 2、创建所需文件 创建08city.html: ![](https://img.kancloud.cn/1f/4f/1f4f98951bae9e0b8acc5d79d085bbd7_641x447.png) 创建08city.php,内容可以留空。 # 3、页面加载,获取省 08city.html: ![](https://img.kancloud.cn/1b/4e/1b4e0a1362b3cbb31ce4b9961dc6c9e7_964x380.png) 08city.php,接收到浏览器发来的Ajax请求,连接数据库,获取省。获取完毕,转换成JSON类型返回给浏览器: ![](https://img.kancloud.cn/16/6d/166d97c864fe4e7c521057a56f364b3f_918x393.png) JS接收服务器返回的数据,并处理成JS数组,然后创建option,给option赋值value属性,并添加到select框中: 做这块的时候,要经常通过浏览器工具来查看错误。 ![](https://img.kancloud.cn/b8/65/b865d210dd3b9dd5b486a84c0fc94793_965x461.png) 最终效果是: ![](https://img.kancloud.cn/a0/3d/a03de4a110f07eb1e86941778f735d13_548x479.png)