栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

请使用js实现一个省市县级联的效果

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

请使用js实现一个省市县级联的效果

<div id="app">    <select id="pro"></select>    <select id="cit"></select>    <select id="cou"></select></div>
var provinces = [    { '001': '浙江', },    { '002': '广东', },    { '003': '江苏', },];var cities = [    {        '001': [{ '001001': '杭州'        },        { '001002': '台州'        }]    },    {        '002': [{ '002001': '广州'        },        { '002002': '佛山',        }]    },    {        '003': [{ '003001': '南京'        },        { '003002': '苏州',        }]    }];var counties = [    {        '001001': [{ '001001001': '杭州sub1'        },        { '001001002': '杭州sub2',        }]    }    ,    {        '001002': [{ '001002001': '台州sub1'        },        { '001002002': '台州sub2',        }]    },    {        '002001': [{ '002001001': '广州sub1'        },        { '002001002': '广州sub2',        }]    },    {        '002002': [{ '002002001': '佛山sub1'        },        { '002002002': '佛山sub2',        }]    },    {        '003001': [{ '003001001': '南京sub1'        },        { '003001002': '南京sub2',        }]    },    {        '003002': [{ '003002001': '苏州sub1'        },        { '003002002': '苏州sub2',        }]    },];function getCities(provinceCode) {    provinceCode = '' + provinceCode;    let obj = cities.filter(e => {        let pre = Object.keys(e)[0];        return pre === provinceCode    })[0];    return Object.values(obj)[0];}function getCounties(cityCode) {    // 这里不能传00开头的数字,有坑    cityCode = '' + cityCode;    let obj = counties.filter(e => {        let pre = Object.keys(e)[0];        return pre === cityCode    })[0];    return Object.values(obj)[0];}var $province = document.querySelector('#pro');var $city = document.querySelector('#cit');var $county = document.querySelector('#cou');function commonFill($el, data) {    while ($el.firstChild)        $el.removeChild($el.firstChild);    data.forEach(e => {        var key = Object.keys(e)[0];        var value = Object.values(e)[0];        $el.appendChild(new Option(value, key));    });    return $el.value;}// 填充省份function fillProvinces() {    return commonFill($province, provinces);}// 填充城市function fillCities(provinceCode) {    var cities = getCities(provinceCode);    return commonFill($city, cities);}// 填充县区function fillCounty(cityCode) {    var counties = getCounties(cityCode);    return commonFill($county, counties);}$province.addEventListener('change', e => {    var provinceCode = e.target.value;    var currentCityValue = fillCities(provinceCode);    fillCounty(currentCityValue);})$city.addEventListener('change', e => {    var cityCode = e.target.value;    fillCounty(cityCode)})var currentProvincevalue = fillProvinces();var currentCityValue = fillCities(currentProvincevalue);var currentCoutuntyValue = fillCounty(currentCityValue);
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/375485.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号