Maison >interface Web >js tutoriel >Menu déroulant de liaison à trois niveaux entre la province et la ville javascript version_javascript skills
Obtenez une liste déroulante à trois niveaux pour les provinces et les villes et obtenez des effets de liaison.
Méthode 1 :
1. Afficher le code
<select class="prov" id="prov5" name="Province" data-code="@Model.Province"> </select> <select class="city" id="city5" name="City" data-code="@Model.City"> </select> <select class="dist" id="area5" name="Area" data-code="@Model.Area"> </select> @Html.HiddenFor(m => m.Province) @Html.HiddenFor(m => m.City) @Html.HiddenFor(m => m.Area)
Appel 2.JS
<script type="text/javascript"> var selectVa2 = new CitySelect({ data: data, provId: "#prov5", cityId: '#city5', areaId: '#area5', isSelect: true }); </script>
3.Js importés
<script src="@Url.Content("~/Themes/Admin/JS/jquery-1.4.4.min.js")" type="text/javascript"></script> <script src="@Url.Content("/Themes/Admin/JS/city2.js")" type="text/javascript"></script> <script src="@Url.Content("/Themes/Admin/JS/citySelect2.js")" type="text/javascript"></script>
Adresse de téléchargement du plug-in 4.js
Adresse de téléchargement du plug-in js : http://files.cnblogs.com/files/weishuanbao/province et city.rar
Méthode 2 :
L'effet est obtenu en fonction de la province sélectionnée et de la ville correspondante.
Ce qui suit est le code HTML
<html> <body> <label for="select_city">城市</label> <div data-role="controlgroup" id="select_p_c_a" data-ajax="false"> <select id="select_province"></select> <select id="select_city"></select> <select id="select_area"></select> </div> <script src="test.js"></script> </body> </html> <script> region_init("select_province","select_city","select_area"); </script> </body> </html>
Ce qui suit est le code js. Le code est relativement long, principalement parce qu'il contient un paramètre d'énumération complet des provinces et des villes chinoises. Tout le monde peut aussi l’utiliser. D'une manière générale, si vous souhaitez implémenter des valeurs par défaut personnalisées, vous devez transmettre six paramètres lors de l'appel de ma méthode region_init
Les trois premiers paramètres sont les ID des trois contrôles de la liste déroulante. Les trois derniers paramètres n'ont pas besoin de transmettre de valeur. Si aucune valeur n'est transmise, le résultat final de la liste déroulante sera celui par défaut. première valeur de chaque liste. Si vous souhaitez définir Si la valeur par défaut est utilisée, les valeurs de province et de ville correspondantes doivent être transmises correspondant à ces trois paramètres. Les valeurs correspondantes des provinces et des villes se retrouvent dans le type énumération. Si vous ne comprenez toujours pas, ou s'il y a des problèmes avec le type d'énumération, n'hésitez pas à en discuter.
Ce qui suit est mon code test.js.
//省、市、区 var région_init = fonction (_region_p, _region_c, _region_d, _region_p_default, _region_c_default, _region_d_default) { var région_p = document.getElementById(_region_p); var région_c = document.getElementById(_region_c); var région_d = document.getElementById(_region_d); fonction option_items_select(cmb, valeur) { pour (var je = 0; je < cmb.options.length; je ) { if (cmb.options[i].value == valeur) { cmb.selectedIndex = i; retour; } } } //valeur de valeur、texte function option_items_add(cmb, valeur, texte, obj, i) { var option = document.createElement("OPTION"); cmb.options.add(option); option.innerText = texte ; option.value = valeur ; option.obj = obj; } fonction région_c_change() { région_d.options.longueur = 0 ; if (region_c.selectedIndex == -1)return ; var item = région_c.options[region_c.selectedIndex].obj; pour (var je = 0; je < item.district.length; je ) { option_items_add(region_d, item.district[i].id, item.district[i].name, null, i); } option_items_select(region_d, _region_d_default); } fonction région_p_change() { région_c.options.length = 0; région_c.onchange = null ; if (region_p.selectedIndex == -1)return ; var item = région_p.options[region_p.selectedIndex].obj; pour (var je = 0; je < item.city.length; je ) { option_items_add(region_c, item.city[i].id, item.city[i].name, item.city[i], i); } option_items_select(region_c, _region_c_default); région_c_change(); région_c.onchange = région_c_change; } pour (var je = 0; je < province_enum.length; je ) { option_items_add(region_p, province_enum[i].id, province_enum[i].name, province_enum[i]); } option_items_select(region_p, _region_p_default); région_p_change(); région_p.onchange = région_p_change; } var province_enum = [ {id : 1, nom : '北京', ville : [ {id : 1, nom : '北京市', district : [ {identifiant : 1, nom : '东城区'}, {identifiant : 2, nom : '西城区'}, {identifiant : 3, nom : '崇文区'}, {id : 4, nom : '宣武区'}, {identifiant : 5, nom : '朝阳区'}, {identifiant : 6, nom : '丰台区'}, {identifiant : 7, nom : '石景山区'}, {identifiant : 8, nom : '海淀区'}, {id : 9, nom : '门头沟区'}, {identifiant : 10, nom : '房山区'}, {identifiant : 11, nom : '通州区'}, {id : 12, nom : '顺义区'}, {id : 13, nom : '昌平区'}, {id : 14, nom : '大兴区'}, {identifiant : 15, nom : '怀柔区'}, {identifiant : 16, nom : '平谷区'}, {id : 17, nom : '密云县'}, {identifiant : 18, nom : '延庆县'} ]} ]}, {id : 2, nom : '天津', ville : [ {id : 2, nom : '天津市', district : [ {id : 19, nom : '和平区'}, {id : 20, nom : '河东区'}, {id : 21, nom : '河西区'}, {id : 22, nom : '南开区'}, {identifiant : 23, nom : '河北区'}, {id : 24, nom : '红桥区'}, {identifiant : 25, nom : '塘沽区'}, {id : 26, nom : '汉沽区'}, {id : 27, nom : '大港区'}, {id : 28, nom : '东丽区'}, {identifiant : 29, nom : '西青区'}, {id : 30, nom : '津南区'}, {id : 31, nom : '北辰区'}, {id : 32, nom : '武清区'}, {id : 33, nom : '宝坻区'}, {id : 34, nom : '宁河县'}, {identifiant : 35, nom : '静海县'}, {identifiant : 36, nom : '蓟县'} ]} ]}, {id : 3, nom : '河北', ville : [ {id : 3, nom : '石家庄市', district : [ {id : 37, nom : '长安区'}, {id : 38, nom : '桥东区'}, {id : 39, nom : '桥西区'}, {identifiant : 40, nom : '新华区'}, {identifiant : 41, nom : '井陉矿区'}, {identifiant : 42, nom : '裕华区'}, {id : 43, nom : '井陉县'}, {id : 44, nom : '正定县'}, {id : 45, nom : '栾城县'}, {id : 46, nom : '行唐县'}, {id : 47, nom : '灵寿县'}, {id : 48, nom : '高邑县'}, {id : 49, nom : '深泽县'}, {id : 50, nom : '赞皇县'}, {id : 51, nom : '无极县'}, {id : 52, nom : '平山县'}, {id : 53, nom : '元氏县'}, {id : 54, nom : '赵县'}, {id : 55, nom : '辛集市'}, {id : 56, nom : '藁城市'}, {id : 57, nom : '晋州市'}, {id : 58, nom : '新乐市'}, {id : 59, nom : '鹿泉市'} ]}, {id : 4, nom : '唐山市', district : [ {identifiant : 60, nom : '路南区'}, {id : 61, nom : '路北区'}, {id : 62, nom : '古冶区'}, {id : 63, nom : '开平区'}, {id : 64, nom : '丰南区'}, {id : 65, nom : '丰润区'}, {id : 66, nom : '滦县'}, {id : 67, nom : '滦南县'}, {id : 68, nom : '乐亭县'}, {id : 69, nom : '迁西县'}, {identifiant : 70, nom : '玉田县'}, {id : 71, nom : '唐海县'}, {id : 72, nom : '遵化市'}, {identifiant : 73, nom : '迁安市'} ]}, {id : 5, nom : '秦皇岛市', district : [ {id : 74, nom : '海港区'}, {identifiant : 75, nom : '山海关区'}, {id : 76, nom : '北戴河区'}, {id : 77, nom : '青龙满族自治县'}, {id : 78, nom : '昌黎县'}, {id : 79, nom : '抚宁县'}, {id : 80, nom : '卢龙县'} ]}, {id : 6, nom : 'Handan City', district : [ {id : 81, nom : 'District de Hanshan'}, {id : 82, nom : 'District de Congtai'}, {id : 83, nom : 'District de Fuxing'}, {id : 84, nom : 'Zone minière de Fengfeng'}, {id : 85, nom : 'Comté de Handan'}, {id : 86, nom : 'Comté de Linzhang'}, {id : 87, nom : 'Comté de Cheng'an'}, {id : 88, nom : 'Comté de Daming'}, {id : 89, nom : 'Comté de She'}, {identifiant : 90, nom : 'Cixian'}, {id : 91, nom : 'Comté de Feixiang'}, {id : 92, nom : 'Comté de Yongnian'}, {id : 93, nom : 'Comté de Qiu'}, {id : 94, nom : 'Comté de Jize'}, {id : 95, nom : 'Comté de Guangping'}, {id : 96, nom : 'Comté de Guantao'}, {identifiant : 97, nom : 'Weixian'}, {id : 98, nom : 'Comté de Quzhou'}, {id : 99, nom : 'Ville de Wu'an'} ]}, {id : 7, nom : 'Xingtai City', district : [ {id : 100, nom : 'District de Qiaodong'}, {id : 101, nom : 'District de Qiaoxi'}, {id : 102, nom : 'Comté de Xingtai'}, {id : 103, nom : 'Comté de Lincheng'}, {id : 104, nom : 'Comté de Neiqiu'}, {id : 105, nom : 'Comté de Baixiang'}, {id : 106, nom : 'Comté de Longyao'}, {id : 107, nom : 'Comté de Ren'}, {id : 108, nom : 'Comté de Nanhe'}, {id : 109, nom : 'Comté de Ningjin'}, {id : 110, nom : 'Comté de Julu'}, {id : 111, nom : 'Comté de Xinhe'}, {id : 112, nom : 'Comté de Guangzong'}, {id : 113, nom : 'Comté de Pingxiang'}, {id : 114, nom : 'Comté de Wei'}, {id : 115, nom : 'Comté de Qinghe'}, {id : 116, nom : 'Comté de Linxi'}, {id : 117, nom : 'Nangong City'}, {identifiant : 118, nom : 'Shahe City'} ]}, {id : 8, nom : 'Baoding City', district : [ {id : 119, nom : 'Nouveau quartier urbain'}, {id : 120, nom : 'District de Beishi'}, {identifiant : 121, nom : 'District de Nanshi'}, {id : 122, nom : 'Comté de Mancheng'}, {id : 123, nom : 'Comté de Qingyuan'}, {id : 124, nom : 'Comté de Laishui'}, {id : 125, nom : 'Comté de Fuping'}, {id : 126, nom : 'Comté de Xushui'}, {id : 127, nom : 'Comté de Dingxing'}, {id : 128, nom : 'Comté de Tang'}, {id : 129, nom : 'Comté de Gaoyang'}, {id : 130, nom : 'Comté de Rongcheng'}, {id : 131, nom : 'Comté de Laiyuan'}, {id : 132, nom : 'Comté de Wangdu'}, {id : 133, nom : 'Comté d'Anxin'}, {identifiant : 134, nom : 'Yixian'}, {id : 135, nom : 'Comté de Quyang'}, {id : 136, nom : 'Comté de Li'}, {id : 137, nom : 'Comté de Shunping'}, {id : 138, nom : 'Comté de Boye'}, {id : 139, nom : 'Comté de Xiong'}, {identifiant : 140, nom : 'Ville de Zhuozhou'}, {id : 141, nom : 'Dingzhou City'}, {id : 142, nom : 'Anguo City'}, {id : 143, nom : 'Gaobeidian City'} ]}, {id : 9, nom : « Ville de Zhangjiakou », district : [ {identifiant : 144, nom : 'District de Qiaodong'}, {id : 145, nom : 'District de Qiaoxi'}, {id : 146, nom : 'District de Xuanhua'}, {id : 147, nom : 'District de Xiahuayuan'}, {id : 148, nom : 'Comté de Xuanhua'}, {identifiant : 149, nom : 'Comté de Zhangbei'}, {id : 150, nom : 'Comté de Kangbao'}, {id : 151, nom : 'Comté de Guyuan'}, {id : 152, nom : 'Comté de Shangyi'}, {id : 153, nom : 'Comté de Yuxian'}, {id : 154, nom : 'Comté de Yangyuan'}, {id : 155, nom : 'Comté de Huai'an'}, {id : 156, nom : 'Comté de Wanquan'}, {id : 157, nom : 'Comté de Huailai'}, {id : 158, nom : 'Comté de Zhuolu'}, {id : 159, nom : 'Comté de Chicheng'}, {id : 160, nom : 'Comté de Chongli'} ]}, {id : 10, nom : 'Chengde City', district : [ {identifiant : 161, nom : 'District de Shuangqiao'}, {id : 162, nom : 'District de Shuangluan'}, {id : 163, nom : 'Zone minière de Yingshouyingzi'}, {id : 164, nom : 'Comté de Chengde'}, {id : 165, nom : 'Comté de Xinglong'}, {id : 166, nom : 'Comté de Pingquan'}, {id : 167, nom : 'Comté de Luanping'}, {id : 168, nom : 'Comté de Longhua'}, {id : 169, nom : 'Comté autonome mandchou de Fengning'}, {id : 170, nom : 'Comté autonome mandchou de Kuancheng'}, {id : 171, nom : 'Comté autonome mandchou et mongol de Weichang'} ]}, {id : 11, nom : « Ville de Cangzhou », district : [ {id : 172, nom : 'District de Xinhua'}, {id : 173, nom : 'Zone du canal'}, {identifiant : 174, nom : 'Cangxian'}, {id : 175, nom : 'Comté de Qing'}, {id : 176, nom : 'Comté de Dongguang'}, {id : 177, nom : 'Comté de Haixing'}, {id : 178, nom : 'Comté de Yanshan'}, {id : 179, nom : 'Comté de Suning'}, {id : 180, nom : 'Comté de Nanpi'}, {id : 181, nom : 'Comté de Wuqiao'}, {id : 182, nom : 'Comté de Xian'}, {id : 183, nom : 'Comté autonome de Mengcun Hui'}, {id : 184, nom : 'Botou City'}, {identifiant : 185, nom : 'Ville de Renqiu'}, {identifiant : 186, nom : 'Ville de Huanghua'}, {id : 187, nom : 'Hejian City'} ]}, {id : 12, nom : « Ville de Langfang », district : [ {id : 188, nom : 'District d'Anci'}, {id : 189, nom : 'District de Guangyang'}, {id : 190, nom : 'Comté de Gu'an'}, {id : 191, nom : 'Comté de Yongqing'}, {id : 192, nom : 'Comté de Xianghe'}, {id : 193, nom : 'Comté de Dacheng'}, {id : 194, nom : 'Comté de Wen'an'}, {id : 195, nom : 'Comté autonome de Dachang Hui'}, {identifiant : 196, nom : 'Ville de Bazhou'}, {identifiant : 197, nom : 'Ville de Sanhe'} ]}, {id : 13, nom : 'Ville de Hengshui', district : [ {id : 198, nom : 'District de Taocheng'}, {id : 199, nom : 'Comté de Zaoqiang'}, {id : 200, nom : 'Comté de Wuyi'}, {id : 201, nom : 'Comté de Wuqiang'}, {id : 202, nom : 'Comté de Raoyang'}, {id : 203, nom : 'Comté d'Anping'}, {id : 204, nom : 'Comté de Gucheng'}, {identifiant : 205, nom : 'Jingxian'}, {id : 206, nom : 'Comté de Fucheng'}, {identifiant : 207, nom : 'Ville de Jizhou'}, {identifiant : 208, nom : 'Ville de Shenzhou'} ]} ]}, {identifiant : 4, nom : 'Shanxi', ville : [ {id : 14, nom : 'Ville de Taiyuan', district : [ {id : 209, nom : '小店区'}, {identifiant : 210, nom : 'District de Yingze'}, {id : 211, nom : 'District de Xinghualing'}, {identifiant : 212, nom : 'District de Jiancao'}, {id : 213, nom : 'District de Wanbolin'}, {identifiant : 214, nom : 'District de Jinyuan'}, {id : 215, nom : 'Comté de Qingxu'}, {id : 216, nom : 'Comté de Yangqu'}, {id : 217, nom : 'Comté de Loufan'}, {identifiant : 218, nom : 'Ville de Gujiao'} ]}, {id : 15, nom : 'Datong City', district : [ {id : 219, nom : 'zone urbaine'}, {id : 220, nom : 'Zone minière'}, {id : 221, nom : 'banlieue sud'}, {id : 222, nom : 'District de Xinrong'}, {id : 223, nom : 'Comté de Yanggao'}, {id : 224, nom : 'Comté de Tianzhen'}, {id : 225, nom : 'Comté de Guangling'}, {id : 226, nom : 'Comté de Lingqiu'}, {id : 227, nom : 'Comté de Hunyuan'}, {id : 228, nom : 'Comté de Zuoyun'}, {id : 229, nom : 'Comté de Datong'} ]}, {id : 16, nom : « Ville de Yangquan », district : [ {id : 230, nom : 'zone urbaine'}, {id : 231, nom : 'Zone minière'}, {id : 232, nom : 'banlieue'}, {id : 233, nom : 'Comté de Pingding'}, {id : 234, nom : 'Comté de Yuxian'} ]}, {id : 17, nom : 'Changzhi City', district : [ {id : 235, nom : 'zone urbaine'}, {id : 236, nom : 'banlieue'}, {id : 237, nom : 'Comté de Changzhi'}, {id : 238, nom : 'Comté de Xiangyuan'}, {id : 239, nom : 'Comté de Tunliu'}, {id : 240, nom : 'Comté de Pingshun'}, {id : 241, nom : 'Comté de Licheng'}, {id : 242, nom : 'Comté de Huguan'}, {id : 243, nom : 'Comté de Changzi'}, {id : 244, nom : 'Comté de Wuxiang'}, {id : 245, nom : 'Comté de Qin'}, {id : 246, nom : 'Comté de Qinyuan'}, {identifiant : 247, nom : 'Ville de Lucheng'} ]}, {id : 18, nom : 'Jincheng City', district : [ {id : 248, nom : 'zone urbaine'}, {id : 249, nom : 'Comté de Qinshui'}, {id : 250, nom : 'Comté de Yangcheng'}, {id : 251, nom : 'Comté de Lingchuan'}, {id : 252, nom : 'Comté de Zezhou'}, {id : 253, nom : 'Gaoping City'} ]}, {id : 19, nom : « Ville de Shuozhou », district : [ {id : 254, nom : 'District de Shuocheng'}, {id : 255, nom : 'District de Pinglu'}, {id : 256, nom : 'Comté de Shanyin'}, {id : 257, nom : 'Comté de Ying'}, {id : 258, nom : 'Comté de Youyu'}, {id : 259, nom : 'Comté de Huairen'} ]}, {id : 20, nom : 'Ville de Jinzhong', district : [ {id : 260, nom : 'District de Yuci'}, {id : 261, nom : 'Comté de Yushe'}, {id : 262, nom : 'Comté de Zuoquan'}, {id : 263, nom : 'Comté de Heshun'}, {id : 264, nom : 'Comté de Xiyang'}, {id : 265, nom : 'Comté de Shouyang'}, {id : 266, nom : 'Comté de Taigu'}, {identifiant : 267, nom : 'Qixian'}, {id : 268, nom : 'Comté de Pingyao'}, {id : 269, nom : 'Comté de Lingshi'}, {identifiant : 270, nom : 'Ville de Jiexiu'} ]}, {id : 21, nom : « ville de Yuncheng », district : [ {id : 271, nom : 'Salt Lake District'}, {id : 272, nom : 'Comté de Linyi'}, {id : 273, nom : 'Comté de Wanrong'}, {id : 274, nom : 'Comté de Wenxi'}, {id : 275, nom : 'Comté de Jishan'}, {id : 276, nom : 'Xinjiang County'}, {identifiant : 277, nom : 'Jiangxian'}, {id : 278, nom : 'Comté de Yuanqu'}, {id : 279, nom : 'Comté de Xia'}, {id : 280, nom : 'Comté de Pinglu'}, {id : 281, nom : 'Comté de Ruicheng'}, {identifiant : 282, nom : 'Ville de Yongji'}, {identifiant : 283, nom : 'Hejin City'} ]}, {id : 22, nom : 'Ville de Xinzhou', district : [ {id : 284, nom : 'District de Xinfu'}, {id : 285, nom : 'Comté de Dingxiang'}, {id : 286, nom : 'Comté de Wutai'}, {id : 287, nom : 'Comté de Dai'}, {identifiant : 288, nom : 'Comté de Fanzhi'}, {id : 289, nom : 'Comté de Ningwu'}, {id : 290, nom : 'Comté de Jingle'}, {id : 291, nom : 'Comté de Shenchi'}, {id : 292, nom : 'Comté de Wuzhai'}, {id : 293, nom : 'Comté de Kelan'}, {id : 294, nom : 'Comté de Hequ'}, {id : 295, nom : 'Comté de Baode'}, {id : 296, nom : 'Comté de Pianguan'}, {identifiant : 297, nom : 'Ville de Yuanping'} ]}, {id : 23, nom : 'Linfen City', district : [ {id : 298, nom : 'District de Yaodu'}, {id : 299, nom : 'Comté de Quwo'}, {id : 300, nom : 'Comté de Yicheng'}, {id : 301, nom : 'Comté de Xiangfen'}, {id : 302, nom : 'Comté de Hongdong'}, {identifiant : 303, nom : 'Guxian'}, {id : 304, nom : 'Comté d'Anze'}, {identifiant : 305, nom : 'Comté de Fushan'}, {id : 306, nom : 'Comté de Jixian'}, {id : 307, nom : 'Comté de Xiangning'}, {id : 308, nom : 'Comté de Daning'}, {identifiant : 309, nom : 'Comté de Xi'}, {id : 310, nom : 'Comté de Yonghe'}, {id : 311, nom : 'Comté de Puxian'}, {id : 312, nom : 'Comté de Fenxi'}, {id : 313, nom : 'Houma City'}, {identifiant : 314, nom : 'Ville de Huozhou'} ]}, {id : 24, nom : 'Lüliang City', district : [ {id : 315, nom : 'District de Lishi'}, {id : 316, nom : 'Comté de Wenshui'}, {id : 317, nom : 'Comté de Jiaocheng'}, {id : 318, nom : 'Comté de Xing'}, {id : 319, nom : 'Comté de Lin'}, {id : 320, nom : 'Comté de Liulin'}, {id : 321, nom : 'Comté de Shilou'}, {id : 322, nom : 'Comté de Lan'}, {id : 323, nom : 'Comté de Fangshan'}, {id : 324, nom : 'Comté de Zhongyang'}, {id : 325, nom : 'Comté de Jiaokou'}, {identifiant : 326, nom : 'Ville de Xiaoyi'}, {identifiant : 327, nom : 'ville de Fenyang'} ]} ]}, {id : 5, nom : 'Mongolie intérieure', ville : [ {id : 25, nom : 'Hohhot City', district : [ {id : 328, nom : 'District de Xincheng'}, {id : 329, nom : 'District musulman'}, {identifiant : 330, nom : 'District de Yuquan'}, {id : 331, nom : 'District de Saihan'}, {id : 332, nom : 'Bannière de gauche de Tumut'}, {id : 333, nom : 'Comté de Tokedo'}, {id : 334, nom : 'Comté de Helinger'}, {id : 335, nom : 'Comté de Qingshuihe'}, {identifiant : 336, nom : 'Comté de Wuchuan'} ]}, {id : 26, nom : 'Baotou City', district : [ {id : 337, nom : 'District de Donghe'}, {id : 338, nom : 'District de Kundulun'}, {id : 339, nom : 'District de Qingshan'}, {id : 340, nom : 'District de Shiguai'}, {id : 341, nom : 'Zone minière de Baiyun'}, {identifiant : 342, nom : 'District de Jiuyuan'}, {id : 343, nom : 'Bannière droite de Tumut'}, {id : 344, nom : 'Comté de Guyang'}, {id : 345, nom : 'Darkhan Maoming'an United Banner'} ]}, {id : 27, nom : 'Ville de Wuhai', district : [ {id : 346, nom : 'District de Haibowan'}, {id : 347, nom : 'District de Hainan'}, {id : 348, nom : 'District de Wuda'} ]}, {id : 28, nom : 'Chifeng City', district : [ {id : 349, nom : 'District de Hongshan'}, {identifiant : 350, nom : 'District de Yuanbaoshan'}, {id : 351, nom : 'District de Songshan'}, {id : 352, nom : 'Bannière d'Aruhorqin'}, {id : 353, nom : 'Bannière de gauche de Bahreïn'}, {id : 354, nom : 'Bahreïn Right Banner'}, {id : 355, nom : 'Comté de Linxi'}, {id : 356, nom : 'Bannière Keshiketeng'}, {id : 357, nom : 'Bannière Wengniute'}, {id : 358, nom : 'Bannière Kalaqin'}, {id : 359, nom : 'Comté de Ningcheng'}, {identifiant : 360, nom : 'Bannière Aohan'} ]}, {id : 29, nom : 'Tongliao City', district : [ {identifiant : 361, nom : 'District de Horqin'}, {id : 362, nom : 'Bannière centrale de l'aile gauche Horqin'}, {id : 363, nom : 'Bannière arrière gauche Horqin'}, {id : 364, nom : 'Comté de Kailu'}, {id : 365, nom : 'Drapeau Kulun'}, {id : 366, nom : 'Drapeau Naiman'}, {id : 367, nom : 'Drapeau Zalut'}, {identifiant : 368, nom : 'Holingol City'} ]}, {id : 30, nom : 'Ordos City', district : [ {id : 369, nom : 'District de Dongsheng'}, {id : 370, nom : 'Drapeau de Dalat'}, {id : 371, nom : 'Zhungeer Banner'}, {id : 372, nom : 'Bannière avant d'Otok'}, {id : 373, nom : 'Bannière Otok'}, {id : 374, nom : 'Bannière Hangjin'}, {id : 375, nom : 'Bannière Wushen'}, {id : 376, nom : 'Bannière Ijinholo'} ]}, {id : 31, nom : 'Hulunbuir City', district : [ {id : 377, nom : 'District de Hailar'}, {id : 378, nom : 'Arong Banner'}, {id : 379, nom : 'Bannière autonome Moridawa Daur'}, {id : 380, nom : 'Bannière autonome d'Oroqen'}, {id : 381, nom : 'Bannière autonome Evenki'}, {id : 382, nom : 'Bannière Chen Balhu'}, {id : 383, nom : 'Nouvelle bannière de gauche de Balhu'}, {id : 384, nom : 'Nouvelle bannière droite de Balhu'}, {id : 385, nom : 'Ville de Manzhouli'}, {id : 386, nom : 'Yakeshi City'}, {id : 387, nom : 'Zhalantun City'}, {id : 388, nom : 'Ergun City'}, {id : 389, nom : 'Genhe City'} ]}, {id : 32, nom : 'Bayannur City', district : [ {id : 390, nom : 'District de Linhe'}, {id : 391, nom : 'Comté de Wuyuan'}, {id : 392, nom : 'Comté de Dengkou'}, {id : 393, nom : 'Bannière avant d'Urad'}, {id : 394, nom : 'Bannière du milieu d'Urad'}, {identifiant : 395, nom : 'Urad Houqi'}, {identifiant : 396, nom : 'Hangjinhouqi'} ]}, {id : 33, nom : 'Ulanqab City', district : [ {identifiant : 397, nom : 'District de Jining'}, {identifiant : 398, nom : 'Comté de Zhuozi'}, {id : 399, nom : 'Comté de Huade'}, {id : 400, nom : 'Comté de Shangdu'}, {id : 401, nom : 'Comté de Xinghe'}, {id : 402, nom : 'Comté de Liangcheng'}, {id : 403, nom : 'Bannière avant droite de Chahar'}, {id : 404, nom : 'Bannière du centre droit de Chahar'}, {id : 405, nom : 'Drapeau arrière droit Chahar'}, {id : 406, nom : 'Bannière Siziwang'}, {identifiant : 407, nom : 'Ville de Fengzhen'} ]}, {id : 34, nom : 'Ligue Xing'an', district : [ {id : 408, nom : 'Ulanhot City'}, {id : 409, nom : 'Aershan City'}, {id : 410, nom : 'Bannière avant droite d'Horqin'}, {id : 411, nom : 'Bannière du centre de l'aile droite Horqin'}, {id : 412, nom : 'Bannière Zhalaite'}, {id : 413, nom : 'Comté de Tuquan'} ]}, {id : 35, nom : 'Ligue Xilingol', district : [ {id : 414, nom : 'Erenhot City'}, {id : 415, nom : 'Xilinhot City'}, {id : 416, nom : 'Bannière Abaga'}, {id : 417, nom : 'Bannière de gauche du Sunit'}, {id : 418, nom : 'Bannière de droite du Sunit'}, {id : 419, nom : 'Bannière orientale d'Ujimqin'}, {id : 420, nom : 'Bannière ouest d'Ujimqin'}, {id : 421, nom : 'Drapeau du temple de Taipu'}, {id : 422, nom : '缯黄 Flag'}, {id : 423, nom : 'Drapeau blanc'}, {identifiant : 424, nom : 'Zhenglanqi'}, {id : 425, nom : 'Comté de Duolun'} ]}, {id : 36, nom : 'Alxa League', district : [ {id : 426, nom : 'Bannière de gauche d'Alxa'}, {id : 427, nom : 'Alxa Right Banner'}, {id : 428, nom : 'Bannière Ejina'} ]} ]}, {id : 6, nom : 'Liaoning', ville : [ {id : 37, nom : « Ville de Shenyang », district : [ {id : 429, nom : 'Zone de paix'}, {id : 430, nom : 'District de Chenhe'}, {id : 431, nom : 'District de Dadong'}, {id : 432, nom : 'District de Huanggu'}, {id : 433, nom : 'District de Tiexi'}, {id : 434, nom : 'District de Sujiatun'}, {id : 435, nom : 'District de Donngling'}, {id : 436, nom : 'District de Xinchengzi'}, {identifiant : 437, nom : 'District de Yuhong'}, {id : 438, nom : 'Comté de Liaozhong'}, {id : 439, nom : 'Comté de Kangping'}, {id : 440, nom : 'Comté de Faku'}, {identifiant : 441, nom : 'Xinmin City'} ]}, {id : 38, nom : « Ville de Dalian », district : [ {identifiant : 442, nom : 'District de Zhongshan'}, {id : 443, nom : 'District de Xigang'}, {id : 444, nom : 'District de Shahekou'}, {id : 445, nom : 'District de Ganjingzi'}, {id : 446, nom : 'District de Lushunkou'}, {identifiant : 447, nom : 'District de Jinzhou'}, {id : 448, nom : 'Comté de Changhai'}, {id : 449, nom : 'Ville de Wafangdian'}, {id : 450, nom : 'Ville Pulandienne'}, {identifiant : 451, nom : 'Ville de Zhuanghe'} ]}, {id : 39, nom : 'Anshan City', district : [ {id : 452, nom : 'District de Tiedong'}, {id : 453, nom : 'District de Tiexi'}, {id : 454, nom : 'District de Tateshan'}, {identifiant : 455, nom : 'District de Qianshan'}, {id : 456, nom : 'Comté de Taian'}, {id : 457, nom : 'Comté autonome mandchou de Xiuyan'}, {identifiant : 458, nom : 'Ville de Haicheng'} ]}, {id : 40, nom : 'Fushun City', district : [ {id : 459, nom : 'District de Xinfu'}, {identifiant : 460, nom : 'District de Dongzhou'}, {identifiant : 461, nom : 'District de Wanghua'}, {id : 462, nom : 'District de Shuncheng'}, {id : 463, nom : 'Comté de Fushun'}, {id : 464, nom : 'Comté autonome mandchou de Xinbin'}, {id : 465, nom : 'Comté autonome mandchou de Qingyuan'} ]}, {id : 41, nom : 'Benxi City', district : [ {id : 466, nom : 'District de Pingshan'}, {identifiant : 467, nom : 'District de Xihu'}, {id : 468, nom : 'District de Mingshan'}, {id : 469, nom : 'District de Nanfen'}, {id : 470, nom : 'Comté autonome mandchou de Benxi'}, {id : 471, nom : 'Comté autonome mandchou de Huanren'} ]}, {id : 42, nom : 'Dandong City', district : [ {identifiant : 472, nom : 'District de Yuanbao'}, {id : 473, nom : 'Quartier de revitalisation'}, {id : 474, nom : 'District de Zhen'an'}, {id : 475, nom : 'Comté autonome mandchou de Kuandian'}, {id : 476, nom : 'Donggang City'}, {identifiant : 477, nom : 'Ville de Fengcheng'} ]}, {id : 43, nom : 'Ville de Jinzhou', district : [ {id : 478, nom : 'District de Guta'}, {id : 479, nom : 'District de Linghe'}, {id : 480, nom : 'District de Taihe'}, {id : 481, nom : 'Comté de Heishan'}, {identifiant : 482, nom : 'Yixian'}, {id : 483, nom : 'Ville de Linghai'}, {identifiant : 484, nom : 'Beining City'} ]}, {id : 44, nom : 'Yingkou City', district : [ {id : 485, nom : 'zone de la gare'}, {id : 486, nom : 'District Ouest'}, {id : 487, nom : 'District de Bayuquan'}, {id : 488, nom : 'Ancienne zone frontalière'}, {identifiant : 489, nom : 'Ville de Gaizhou'}, {id : 490, nom : 'Dashiqiao City'} ]}, {id : 45, nom : 'Fuxin City', district : [ {identifiant : 491, nom : 'District de Haizhou'}, {id : 492, nom : 'District de Xinqiu'}, {id : 493, nom : 'District de Taiping'}, {id : 494, nom : 'District de Qinghemen'}, {id : 495, nom : 'District de Xihe'}, {id : 496, nom : 'Comté autonome mongol de Fuxin'}, {id : 497, nom : 'Comté de Zhangwu'} ]}, {id : 46, nom : 'Liaoyang City', district : [ {id : 498, nom : 'District de Baita'}, {id : 499, nom : 'District de Wensheng'}, {id : 500, nom : 'District de Hong Kong'}, {id : 501, nom : 'District de Gongchangling'}, {id : 502, nom : 'District de Taizihe'}, {id : 503, nom : 'Comté de Liaoyang'}, {id : 504, nom : 'Lighthouse City'} ]}, {id : 47, nom : 'Panjin City', district : [ {id : 505, nom : 'District de Shuangtaizi'}, {id : 506, nom : 'District de Xinglongtai'}, {id : 507, nom : 'Comté de Dawa'}, {id : 508, nom : 'Comté de Panshan'} ]}, {id : 48, nom : 'Tieling City', district : [ {identifiant : 509, nom : 'District de Yinzhou'}, {id : 510, nom : 'District de Qinghe'}, {id : 511, nom : 'Comté de Tieling'}, {id : 512, nom : 'Comté de Xifeng'}, {id : 513, nom : 'Comté de Changtu'}, {id : 514, nom : 'Ville de Tiaobingshan'}, {identifiant : 515, nom : 'Ville de Kaiyuan'} ]}, {id : 49, nom : « Ville de Chaoyang », district : [ {id : 516, nom : 'Zone des tours jumelles'}, {id : 517, nom : 'District de Longcheng'}, {id : 518, nom : 'Comté de Chaoyang'}, {id : 519, nom : 'Comté de Jianping'}, {id : 520, nom : 'Comté autonome mongol de gauche de Kalaqin'}, {identifiant : 521, nom : 'Ville de Beipiao'}, {identifiant : 522, nom : 'Ville de Lingyuan'} ]}, {id : 50, nom : 'Huludao City', district : [ {id : 523, nom : 'District de Lianshan'}, {identifiant : 524, nom : 'District de Longgang'}, {id : 525, nom : 'District de Nan Piao'}, {id : 526, nom : 'Comté de Suizhong'}, {id : 527, nom : 'Comté de Jianchang'}, {identifiant : 528, nom : 'Xingcheng'} ]} ]}, {id : 7, nom : 'Jilin', ville : [ {id : 51, nom : « Ville de Changchun », district : [ {id : 529, nom : 'District de Nanguan'}, {id : 530, nom : 'District de Kuancheng'}, {id : 531, nom : 'District de Chaoyang'}, {id : 532, nom : 'District d'Erdao'}, {identifiant : 533, nom : 'Green Park'}, {id : 534, nom : 'District de Shuangyang'}, {id : 535, nom : 'Comté de Nong'an'}, {identifiant : 536, nom : 'Ville de Jiutai'}, {identifiant : 537, nom : 'Ville de Yushu'}, {identifiant : 538, nom : 'Ville de Dehui'} ]}, {id : 52, nom : 'Jilin City', district : [ {id : 539, nom : 'District de Changyi'}, {id : 540, nom : 'District de Longtan'}, {id : 541, nom : 'Zone du camp du navire'}, {id : 542, nom : 'Zone dodue'}, {id : 543, nom : 'Comté de Yongji'}, {id : 544, nom : 'Jiaohe City'}, {id : 545, nom : 'Huadian City'}, {identifiant : 546, nom : 'Cité de Shulan'}, {identifiant : 547, nom : 'Panshi City'} ]}, {id : 53, nom : 'Siping City', district : [ {id : 548, nom : 'District de Tiexi'}, {identifiant : 549, nom : 'District de Tiedong'}, {id : 550, nom : 'Comté de Lishu'}, {id : 551, nom : 'Comté autonome mandchou de Yitong'}, {identifiant : 552, nom : 'Ville de Gongzhuling'}, {identifiant : 553, nom : 'Ville de Shuangliao'} ]}, {id : 54, nom : 'Ville de Liaoyuan', district : [ {id : 554, nom : 'District de Longshan'}, {id : 555, nom : 'District de Xi'an'}, {id : 556, nom : 'Comté de Dongfeng'}, {id : 557, nom : 'Comté de Dongliao'} ]}, {id : 55, nom : 'Tonghua City', district : [ {id : 558, nom : 'District de Dongchang'}, {id : 559, nom : 'District d'Erdaojiang'}, {id : 560, nom : 'Comté de Tonghua'}, {id : 561, nom : 'Comté de Huinan'}, {id : 562, nom : 'Comté de Liuhe'}, {id : 563, nom : 'Ville de Meihekou'}, {identifiant : 564, nom : 'Ji'an City'} ]}, {id : 56, nom : « Ville de Baishan », district : [ {id : 565, nom : 'District de Badaojiang'}, {id : 566, nom : 'Comté de Fusong'}, {id : 567, nom : 'Comté de Jingyu'}, {id : 568, nom : 'Comté autonome coréen de Changbai'}, {id : 569, nom : 'Comté de Jiangyuan'}, {identifiant : 570, nom : 'Ville de Linjiang'} ]}, {id : 57, nom : « Ville de Songyuan », district : [ {id : 571, nom : 'District de Ningjiang'}, {id : 572, nom : 'ancien comté autonome mongol de Gorros'}, {id : 573, nom : 'Comté de Changling'}, {id : 574, nom : 'Comté de Qian'an'}, {identifiant : 575, nom : 'Comté de Fuyu'} ]}, {id : 58, nom : 'Ville de Baicheng', district : [ {identifiant : 576, nom : 'District de Taobei'}, {id : 577, nom : 'Comté de Zhenlai'}, {id : 578, nom : 'Comté de Tongyu'}, {id : 579, nom : 'Taonan City'}, {id : 580, nom : 'Da'an City'} ]}, {id : 59, nom : 'Yanbian', district : [ {id : 581, nom : 'Yanji City'}, {id : 582, nom : 'Tumen City'}, {id : 583, nom : 'Dunhua City'}, {id : 584, nom : 'Hunchun City'}, {identifiant : 585, nom : 'Ville de Longjing'}, {id : 586, nom : 'Helong City'}, {id : 587, nom : 'Comté de Wangqing'}, {id : 588, nom : 'Comté d'Antu'} ]} ]}, {id : 8, nom : 'Heilongjiang', ville : [ {id : 60, nom : 'Harbin City', district : [ {identifiant : 589, nom : 'District de Daoli'}, {id : 590, nom : 'District de Nangang'}, {id : 591, nom : 'District de Daowai'}, {id : 592, nom : 'District de Xiangfang'}, {id : 593, nom : 'Power Zone'}, {id : 594, nom : 'Zone des bungalows'}, {identifiant : 595, nom : 'District de Songbei'}, {id : 596, nom : 'District de Hulan'}, {id : 597, nom : 'Comté de Yilan'}, {id : 598, nom : 'Comté de Fangzheng'}, {id : 599, nom : 'Comté de Bin'}, {id : 600, nom : 'Comté de Bayan'}, {id : 601, nom : 'Comté de Mulan'}, {id : 602, nom : 'Comté de Tonghe'}, {id : 603, nom : 'Comté de Yanshou'}, {identifiant : 604, nom : 'Acheng'}, {id : 605, nom : 'Deux villes'}, {identifiant : 606, nom : 'Ville de Shangzhi'}, {identifiant : 607, nom : 'Ville de Wuchang'} ]}, {id : 61, nom : « ville de Qiqihar », district : [ {id : 608, nom : 'District de Longsha'}, {identifiant : 609, nom : 'District de Jianhua'}, {id : 610, nom : 'District de Tiefeng'}, {id : 611, nom : 'District d'Ang'angxi'}, {id : 612, nom : 'District de Fularki'}, {id : 613, nom : 'District de Nianzishan'}, {id : 614, nom : 'District de Meris Daur'}, {id : 615, nom : 'Comté de Longjiang'}, {id : 616, nom : 'Comté de Yian'}, {id : 617, nom : 'Comté de Tailai'}, {id : 618, nom : 'Comté de Gannan'}, {id : 619, nom : 'Comté de Fufu'}, {id : 620, nom : 'Comté de Keshan'}, {id : 621, nom : 'Comté de Kedong'}, {id : 622, nom : 'Comté de Baiquan'}, {identifiant : 623, nom : 'Nehe City'} ]}, {id : 62, nom : 'Jixi City', district : [ {id : 624, nom : 'District de Jiguan'}, {id : 625, nom : 'District de Hengshan'}, {id : 626, nom : 'District de Didao'}, {identifiant : 627, nom : 'District de Lishu'}, {id : 628, nom : 'District de Chengzihe'}, {id : 629, nom : 'District de Mashan'}, {id : 630, nom : 'Comté de Jidong'}, {id : 631, nom : 'Hulin City'}, {identifiant : 632, nom : 'Mishan City'} ]}, {id : 63, nom : 'Hegang City', district : [ {id : 633, nom : 'District de Xiangyang'}, {id : 634, nom : 'Quartier ouvrier et paysan'}, {identifiant : 635, nom : 'District de Nanshan'}, {id : 636, nom : 'District de Xing'an'}, {id : 637, nom : 'District de Dongshan'}, {id : 638, nom : 'District de Xingshan'}, {id : 639, nom : 'Comté de Luobei'}, {identifiant : 640, nom : 'Comté de Suibin'} ]}, {id : 64, nom : 'Ville de Shuangyashan', district : [ {id : 641, nom : 'District de Jianshan'}, {id : 642, nom : 'District de Lingdong'}, {id : 643, nom : 'District de Sifangtai'}, {id : 644, nom : 'District de Baoshan'}, {id : 645, nom : 'Comté de Jixian'}, {id : 646, nom : 'Comté de Youyi'}, {id : 647, nom : 'Comté de Baoqing'}, {id : 648, nom : 'Comté de Raohe'} ]}, {id : 65, nom : 'Daqing City', district : [ {id : 649, nom : 'District de Sartu'}, {identifiant : 650, nom : 'District de Longfeng'}, {identifiant : 651, nom : 'District de la route de Ranghu'}, {id : 652, nom : 'District de Honggang'}, {id : 653, nom : 'District de Datong'}, {id : 654, nom : 'Comté de Zhaozhou'}, {id : 655, nom : 'Comté de Zhaoyuan'}, {id : 656, nom : 'Comté de Lindian'}, {id : 657, nom : 'Comté autonome mongol de Dulbert'} ]}, {id : 66, nom : 'Yichun City', district : [ {id : 658, nom : 'District de Yichun'}, {id : 659, nom : 'District de Nancha'}, {id : 660, nom : 'Zone amicale'}, {id : 661, nom : 'District de Xilin'}, {id : 662, nom : 'District de Cuiluan'}, {identifiant : 663, nom : 'District de Xinqing'}, {id : 664, nom : 'District de Meixi'}, {id : 665, nom : 'District de Jinshantun'}, {id : 666, nom : 'District de Wuying'}, {id : 667, nom : 'District de la rivière Wuma'}, {id : 668, nom : 'District de Tangwanghe'}, {identifiant : 669, nom : 'District de Dailing'}, {id : 670, nom : 'District de Wuyiling'}, {id : 671, nom : 'Quartier de l'Étoile Rouge'}, {id : 672, nom : 'District de Shangganling'}, {id : 673, nom : 'Comté de Jiayin'}, {identifiant : 674, nom : 'Tieli City'} ]}, {identifiant : 67, nom : 'Ville de Jiamusi', district : [ {identifiant : 675, nom : 'District de Yonghong'}, {id : 676, nom : 'District de Xiangyang'}, {id : 677, nom : 'Zone avancée'}, {id : 678, nom : 'District de Dongfeng'}, {id : 679, nom : 'banlieue'}, {id : 680, nom : 'Comté de Huannan'}, {id : 681, nom : 'Comté de Huachuan'}, {id : 682, nom : 'Comté de Tangyuan'}, {id : 683, nom : 'Comté de Fuyuan'}, {id : 684, nom : 'Ville de Tongjiang'}, {identifiant : 685, nom : 'Ville de Fujin'} ]}, {id : 68, nom : 'Ville de Qitaihe', district : [ {identifiant : 686, nom : 'District de Xinxing'}, {id : 687, nom : 'District de Taoshan'}, {id : 688, nom : 'District de la rivière Eggplant'}, {id : 689, nom : 'Comté de Boli'} ]}, {id : 69, nom : « Ville de Mudanjiang », district : [ {id : 690, nom : 'District de Dongan'}, {id : 691, nom : 'District de Yangming'}, {id : 692, nom : 'District d'Aimin'}, {id : 693, nom : 'District de Xi'an'}, {id : 694, nom : 'Comté de Dongning'}, {id : 695, nom : 'Comté de Linkou'}, {id : 696, nom : 'Ville de Suifenhe'}, {identifiant : 697, nom : 'Hailin City'}, {id : 698, nom : 'Ning'an City'}, {identifiant : 699, nom : 'Muling City'} ]}, {id : 70, nom : 'Heihe City', district : [ {id : 700, nom : 'District d'Aihui'}, {id : 701, nom : 'Comté de Nenjiang'}, {id : 702, nom : 'Comté de Xunke'}, {id : 703, nom : 'Comté de Sunwu'}, {id : 704, nom : 'Bei'an City'}, {identifiant : 705, nom : 'Ville de Wudalianchi'} ]}, {id : 71, nom : 'Ville de Suihua', district : [ {identifiant : 706, nom : 'District de Beilin'}, {id : 707, nom : 'Comté de Wangkui'}, {id : 708, nom : 'Comté de Lanxi'}, {id : 709, nom : 'Comté de Qinggang'}, {id : 710, nom : 'Comté de Qing'an'}, {id : 711, nom : 'Comté de Mingshui'}, {id : 712, nom : 'Comté de Suiling'}, {id : 713, nom : 'Anda City'}, {identifiant : 714, nom : 'Ville de Zhaodong'}, {identifiant : 715, nom : 'Helen City'} ]}, {id : 72, nom : 'Zone de Daxinganling', district : [ {id : 716, nom : 'Comté de Huma'}, {id : 717, nom : 'Comté de Tahe'}, {id : 718, nom : 'Comté de Mohe'} ]} ]}, {id : 9, nom : 'Shanghai', ville : [ {id : 73, nom : 'Shanghai', district : [ {id : 719, nom : 'District de Huangpu'}, {id : 720, nom : 'District de Luwan'}, {identifiant : 721, nom : 'District de Xuhui'}, {id : 722, nom : 'Changning District'}, {id : 723, nom : 'District de Jing'an'}, {id : 724, nom : 'District de Putuo'}, {id : 725, nom : 'District de Zhabei'}, {id : 726, nom : 'District de Hongkou'}, {identifiant : 727, nom : 'District de Yangpu'}, {id : 728, nom : 'District de Minhang'}, {id : 729, nom : 'District de Baoshan'}, {identifiant : 730, nom : 'District de Jiading'}, {id : 731, nom : 'Nouvelle zone de Pudong'}, {id : 732, nom : 'District de Jinshan'}, {id : 733, nom : 'District de Songjiang'}, {identifiant : 734, nom : 'District de Qingpu'}, {id : 735, nom : 'District de Nanhui'}, {id : 736, nom : 'District de Fengxian'}, {identifiant : 737, nom : 'Comté de Chongming'} ]} ]}, {id : 10, nom : 'Jiangsu', ville : [ {id : 74, nom : 'Nanjing City', district : [ {identifiant : 738, nom : 'District de Xuanwu'}, {id : 739, nom : 'District de Baixia'}, {id : 740, nom : 'District de Qinhuai'}, {id : 741, nom : 'District de Jianye'}, {id : 742, nom : 'District de Gulou'}, {id : 743, nom : 'District de Xiaguan'}, {id : 744, nom : 'District de Pukou'}, {identifiant : 745, nom : 'District de Qixia'}, {id : 746, nom : 'District de Yuhuatai'}, {id : 747, nom : 'District de Jiangning'}, {identifiant : 748, nom : 'District de Liuhe'}, {id : 749, nom : 'Comté de Lishui'}, {id : 750, nom : 'Comté de Gaochun'} ]}, {id : 75, nom : 'Wuxi City', district : [ {id : 751, nom : 'District de Chong'an'}, {identifiant : 752, nom : 'District de Nanchang'}, {id : 753, nom : 'District de Beitang'}, {id : 754, nom : 'District de Xishan'}, {id : 755, nom : 'District de Huishan'}, {identifiant : 756, nom : 'District de Binhu'}, {id : 757, nom : 'Jiangyin City'}, {identifiant : 758, nom : 'Ville de Yixing'} ]}, {id : 76, nom : « Ville de Xuzhou », district : [ {id : 759, nom : 'District de Gulou'}, {id : 760, nom : 'District de Yunlong'}, {identifiant : 761, nom : 'District de Jiuli'}, {id : 762, nom : 'District de Jiawang'}, {id : 763, nom : 'District de Quanshan'}, {id : 764, nom : 'Comté de Feng'}, {id : 765, nom : 'Comté de Pei'}, {id : 766, nom : 'Comté de Tongshan'}, {id : 767, nom : 'Comté de Suining'}, {identifiant : 768, nom : 'Ville de Xinyi'}, {identifiant : 769, nom : 'Ville de Pizhou'} ]}, {id : 77, nom : « Ville de Changzhou », district : [ {id : 770, nom : 'District de Tianning'}, {id : 771, nom : 'Quartier du Clocher'}, {id : 772, nom : 'District de Qishuyan'}, {id : 773, nom : 'District de Nouveau Taipei'}, {identifiant : 774, nom : 'District de Wujin'}, {id : 775, nom : 'Ville de Liyang'}, {identifiant : 776, nom : 'Jintan City'} ]}, {id : 78, nom : « Ville de Suzhou », district : [ {id : 777, nom : 'District de Canglang'}, {identifiant : 778, nom : 'District de Pingjiang'}, {identifiant : 779, nom : 'District de Jinchang'}, {id : 780, nom : 'District de Huqiu'}, {id : 781, nom : 'District de Wuzhong'}, {id : 782, nom : 'District de Xiangcheng'}, {id : 783, nom : 'Ville de Changshu'}, {identifiant : 784, nom : 'Ville de Zhangjiagang'}, {identifiant : 785, nom : 'Ville de Kunshan'}, {id : 786, nom : 'Ville de Wujiang'}, {identifiant : 787, nom : 'Ville de Taicang'} ]}, {id : 79, nom : 'Nantong City', district : [ {identifiant : 788, nom : 'District de Chongchuan'}, {id : 789, nom : 'District de Gangzha'}, {id : 790, nom : 'Comté de Haian'}, {id : 791, nom : 'Comté de Rudong'}, {identifiant : 792, nom : 'Ville de Qidong'}, {identifiant : 793, nom : 'Rugao City'}, {identifiant : 794, nom : 'Ville de Tongzhou'}, {id : 795, nom : 'Haimen City'} ]}, {id : 80, nom : « Ville de Lianyungang », district : [ {id : 796, nom : 'District de Lianyun'}, {identifiant : 797, nom : 'District de Xinpu'}, {identifiant : 798, nom : 'District de Haizhou'}, {id : 799, nom : 'Comté de Ganyu'}, {id : 800, nom : 'Comté de Donghai'}, {id : 801, nom : 'Comté de Guanyun'}, {identifiant : 802, nom : 'Comté de Guannan'} ]}, {id : 81, nom : 'Huai'an City', district : [ {id : 803, nom : 'District de Qinghe'}, {identifiant : 804, nom : 'District de Chuzhou'}, {id : 805, nom : 'District de Huaiyin'}, {identifiant : 806, nom : 'District de Qingpu'}, {id : 807, nom : 'Comté de Lianshui'}, {id : 808, nom : 'Comté de Hongze'}, {id : 809, nom : 'Comté de Xuyi'}, {identifiant : 810, nom : 'Comté de Jinhu'} ]}, {id : 82, nom : 'Yancheng City', district : [ {identifiant : 811, nom : 'District de Tinghu'}, {identifiant : 812, nom : 'District de Yandu'}, {id : 813, nom : 'Comté de Xiangshui'}, {id : 814, nom : 'Comté de Binhai'}, {id : 815, nom : 'Comté de Funing'}, {id : 816, nom : 'Comté de Sheyang'}, {id : 817, nom : 'Comté de Jianhu'}, {identifiant : 818, nom : 'Ville de Dongtai'}, {identifiant : 819, nom : 'Dafeng City'} ]}, {id : 83, nom : « Ville de Yangzhou », district : [ {identifiant : 820, nom : 'District de Guangling'}, {identifiant : 821, nom : 'District de Hanjiang'}, {identifiant : 822, nom : 'District de Weiyang'}, {id : 823, nom : 'Comté de Baoying'}, {identifiant : 824, nom : 'Ville de Yizheng'}, {id : 825, nom : 'Gaoyou City'}, {identifiant : 826, nom : 'Ville de Jiangdu'} ]}, {id : 84, nom : 'Ville de Zhenjiang', district : [ {identifiant : 827, nom : 'District de Jingkou'}, {identifiant : 828, nom : 'District de Runzhou'}, {id : 829, nom : 'District de Dantu'}, {identifiant : 830, nom : 'Ville de Danyang'}, {identifiant : 831, nom : 'Ville de Yangzhong'}, {identifiant : 832, nom : 'Jurong City'} ]}, {id : 85, nom : « Ville de Taizhou », district : [ {id : 833, nom : 'Hailing District'}, {id : 834, nom : 'District de Gaogang'}, {identifiant : 835, nom : 'Ville de Xinghua'}, {identifiant : 836, nom : 'Ville de Jingjiang'}, {identifiant : 837, nom : 'Ville de Taixing'}, {id : 838, nom : 'Jiangyan City'} ]}, {id : 86, nom : 'Suqian City', district : [ {id : 839, nom : 'District de Sucheng'}, {identifiant : 840, nom : 'District de Suyu'}, {id : 841, nom : 'Comté de Shuyang'}, {id : 842, nom : 'Comté de Siyang'}, {identifiant : 843, nom : 'Comté de Sihong'} ]} ]}, {id : 11, nom : 'Zhejiang', ville : [ {id : 87, nom : « Ville de Hangzhou », district : [ {id : 844, nom : 'District de Shangcheng'}, {id : 845, nom : 'District de Xiacheng'}, {id : 846, nom : 'District de Jianggan'}, {id : 847, nom : 'District de Gongshu'}, {id : 848, nom : '西湖区'}, {identifiant : 849, nom : 'District de Binjiang'}, {id : 850, nom : 'District de Xiaoshan'}, {identifiant : 851, nom : 'District de Yuhang'}, {id : 852, nom : 'Comté de Tonglu'}, {id : 853, nom : 'Comté de Chun'an'}, {identifiant : 854, nom : 'Jiande City'}, {identifiant : 855, nom : 'Ville de Fuyang'}, {identifiant : 856, nom : 'Ville de Lin'an'} ]}, {id : 88, nom : 'Ningbo City', district : [ {id : 857, nom : 'District de Haishu'}, {id : 858, nom : 'District de Kodong'}, {identifiant : 859, nom : 'District de Jiangbei'}, {id : 860, nom : 'District de Beilun'}, {identifiant : 861, nom : 'District de Zhenhai'}, {identifiant : 862, nom : 'District de Yinzhou'}, {id : 863, nom : 'Comté de Xiangshan'}, {id : 864, nom : 'Comté de Ninghai'}, {identifiant : 865, nom : 'Yuyao City'}, {id : 866, nom : 'Cixi City'}, {identifiant : 867, nom : 'Ville de Fenghua'} ]}, {id : 89, nom : « Ville de Wenzhou », district : [ {id : 868, nom : 'District de Lucheng'}, {id : 869, nom : 'District de Longwan'}, {id : 870, nom : 'District d'Ouhai'}, {id : 871, nom : 'Comté de Dongtou'}, {id : 872, nom : 'Comté de Yongjia'}, {id : 873, nom : 'Comté de Pingyang'}, {id : 874, nom : 'Comté de Cangnan'}, {id : 875, nom : 'Comté de Wencheng'}, {id : 876, nom : 'Comté de Taishun'}, {id : 877, nom : 'Ruian City'}, {identifiant : 878, nom : 'Ville de Yueqing'} ]}, {id : 90, nom : 'Jiaxing City', district : [ {identifiant : 879, nom : 'District de Xiucheng'}, {identifiant : 880, nom : 'District de Xiuzhou'}, {id : 881, nom : 'Comté de Jiashan'}, {id : 882, nom : 'Comté de Haiyan'}, {id : 883, nom : 'Haining City'}, {identifiant : 884, nom : 'Ville de Pinghu'}, {identifiant : 885, nom : 'Ville de Tongxiang'} ]}, {id : 91, nom : « Ville de Huzhou », district : [ {id : 886, nom : 'District de Wuxing'}, {identifiant : 887, nom : 'District de Nanxun'}, {identifiant : 888, nom : 'Comté de Deqing'}, {id : 889, nom : 'Comté de Changxing'}, {id : 890, nom : 'Comté d'Anji'} ]}, {id : 92, nom : 'Shaoxing City', district : [ {id : 891, nom : 'District de Yuecheng'}, {id : 892, nom : 'Comté de Shaoxing'}, {id : 893, nom : 'Comté de Xinchang'}, {identifiant : 894, nom : 'Ville de Zhuji'}, {identifiant : 895, nom : 'Ville de Shangyu'}, {identifiant : 896, nom : 'Ville de Shengzhou'} ]}, {id : 93, nom : 'Ville de Jinhua', district : [ {id : 897, nom : 'District de Wucheng'}, {id : 898, nom : 'District de Jindong'}, {id : 899, nom : 'Comté de Wuyi'}, {id : 900, nom : 'Comté de Pujiang'}, {id : 901, nom : 'Comté de Pan'an'}, {identifiant : 902, nom : 'Ville de Lanxi'}, {identifiant : 903, nom : 'Ville de Yiwu'}, {identifiant : 904, nom : 'Ville de Dongyang'}, {identifiant : 905, nom : 'Ville de Yongkang'} ]}, {id : 94, nom : 'Ville de Quzhou', district : [ {id : 906, nom : 'District de Kecheng'}, {id : 907, nom : 'District de Qujiang'}, {id : 908, nom : 'Comté de Changshan'}, {id : 909, nom : 'Comté de Kaihua'}, {id : 910, nom : 'Comté de Longyou'}, {identifiant : 911, nom : 'Ville de Jiangshan'} ]}, {id : 95, nom : « Ville de Zhoushan », district : [ {id : 912, nom : 'District de Dinghai'}, {id : 913, nom : 'District de Putuo'}, {id : 914, nom : 'Comté de Daishan'}, {id : 915, nom : 'Comté de Shengsi'} ]}, {id : 96, nom : « Ville de Taizhou », district : [ {id : 916, nom : 'District de Jiaojiang'}, {id : 917, nom : 'District de Huangyan'}, {identifiant : 918, nom : 'District de Luqiao'}, {id : 919, nom : 'Comté de Yuhuan'}, {id : 920, nom : 'Comté de Sanmen'}, {id : 921, nom : 'Comté de Tiantai'}, {id : 922, nom : 'Comté de Xianju'}, {id : 923, nom : 'Wenling City'}, {identifiant : 924, nom : 'Ville de Linhai'} ]}, {id : 97, nom : 'Ville de Lishui', district : [ {identifiant : 925, nom : 'District de Liandu'}, {id : 926, nom : 'Comté de Qingtian'}, {id : 927, nom : 'Comté de Jinyun'}, {id : 928, nom : 'Comté de Suichang'}, {id : 929, nom : 'Comté de Songyang'}, {id : 930, nom : 'Comté de Yunhe'}, {id : 931, nom : 'Comté de Qingyuan'}, {id : 932, nom : 'Comté autonome de Jingning She'}, {id : 933, nom : 'Longquan City'} ]} ]}, {id : 12, nom : 'Anhui', ville : [ {id : 98, nom : 'Hefei City', district : [ {id : 934, nom : 'District de Yaohai'}, {id : 935, nom : 'District de Luyang'}, {id : 936, nom : 'District de Shushan'}, {id : 937, nom : 'District de Baohe'}, {id : 938, nom : 'Comté de Changfeng'}, {identifiant : 939, nom : 'Comté de Feidong'}, {identifiant : 940, nom : 'Comté de Feixi'} ]}, {id : 99, nom : 'Ville de Wuhu', district : [ {identifiant : 941, nom : 'District de Jinghu'}, {id : 942, nom : 'District de Matang'}, {id : 943, nom : 'District de Xinwu'}, {identifiant : 944, nom : 'District de Jiujiang'}, {id : 945, nom : 'Comté de Wuhu'}, {id : 946, nom : 'Comté de Fanchang'}, {identifiant : 947, nom : 'Comté de Nanling'} ]}, {id : 100, nom : 'Bengbu City', district : [ {id : 948, nom : 'District des lacs de Longzi'}, {id : 949, nom : 'District de Bengshan'}, {identifiant : 950, nom : 'District de Yuhui'}, {id : 951, nom : 'District de Huaishang'}, {id : 952, nom : 'Comté de Huaiyuan'}, {id : 953, nom : 'Comté de Wuhe'}, {id : 954, nom : 'Comté de Guzhen'} ]}, {id : 101, nom : « Ville de Huainan », district : [ {id : 955, nom : 'District de Datong'}, {id : 956, nom : 'District de Tianjia'an'}, {id : 957, nom : 'District de Xiejiaji'}, {id : 958, nom : 'District de Bagongshan'}, {id : 959, nom : 'District de Panji'}, {id : 960, nom : 'Comté de Fengtai'} ]}, {id : 102, nom : 'Ma'anshan City', district : [ {id : 961, nom : 'District de Jinjiazhuang'}, {id : 962, nom : 'District de Huashan'}, {id : 963, nom : 'District de Yushan'}, {id : 964, nom : 'Comté de Dangtu'} ]}, {id : 103, nom : 'Ville de Huaibei', district : [ {id : 965, nom : 'District de Duji'}, {id : 966, nom : 'District de Xiangshan'}, {id : 967, nom : 'District de Lieshan'}, {id : 968, nom : 'Comté de Suixi'} ]}, {id : 104, nom : 'Tongling City', district : [ {id : 969, nom : 'District de Tongguanshan'}, {id : 970, nom : 'Montagne du Lion'}, {id : 971, nom : 'banlieue'}, {id : 972, nom : 'Comté de Tongling'} ]}, {id : 105, nom : 'Anqing City', district : [ {id : 973, nom : 'District de Yingjiang'}, {id : 974, nom : 'District de Daguan'}, {id : 975, nom : 'banlieue'}, {id : 976, nom : 'Comté de Huaining'}, {id : 977, nom : 'Comté de Zongyang'}, {id : 978, nom : 'Comté de Qianshan'}, {id : 979, nom : 'Comté de Taihu'}, {id : 980, nom : 'Comté de Susong'}, {id : 981, nom : 'Comté de Wangjiang'}, {id : 982, nom : 'Comté de Yuexi'}, {id : 983, nom : 'Ville de Tongcheng'} ]}, {id : 106, nom : « Ville de Huangshan », district : [ {id : 984, nom : 'District de Tunxi'}, {id : 985, nom : 'District de Huangshan'}, {id : 986, nom : 'District de Huizhou'}, {id : 987, nom : 'Comté de She'}, {id : 988, nom : 'Comté de Xiuning'}, {identifiant : 989, nom : 'Yixian'}, {id : 990, nom : 'Comté de Qimen'} ]}, {id : 107, nom : « Ville de Chuzhou », district : [ {id : 991, nom : 'District de Langya'}, {id : 992, nom : 'District de Nanqiao'}, {id : 993, nom : 'Comté de Lai'an'}, {id : 994, nom : 'Comté de Quanjiao'}, {id : 995, nom : 'Comté de Dingyuan'}, {id : 996, nom : 'Comté de Fengyang'}, {id : 997, nom : 'Ville de Tianchang'}, {identifiant : 998, nom : 'Ville de Mingguang'} ]}, {id : 108, nom : 'Ville de Fuyang', district : [ {id : 999, nom : 'District de Yingzhou'}, {id : 1000, nom : 'District de Yingdong'}, {identifiant : 1001, nom : 'District de Yingquan'}, {id : 1002, nom : 'Comté de Linquan'}, {id : 1003, nom : 'Comté de Taihe'}, {id : 1004, nom : 'Comté de Funan'}, {id : 1005, nom : 'Comté de Yingshang'}, {identifiant : 1006, nom : 'Ville de Jieshou'} ]}, {id : 109, nom : « Ville de Suzhou », district : [ {identifiant : 1007, nom : 'District de Yongqiao'}, {id : 1008, nom : 'Comté de Dangshan'}, {id : 1009, nom : 'Comté de Xiao'}, {id : 1010, nom : 'Comté de Lingbi'}, {id : 1011, nom : 'Comté de Si'} ]}, {id : 110, nom : 'Ville de Chaohu', district : [ {id : 1012, nom : 'Zone d'accueil'}, {id : 1013, nom : 'Comté de Lujiang'}, {id : 1014, nom : 'Comté de Wuwei'}, {id : 1015, nom : 'Comté de Hanshan'}, {id : 1016, nom : 'Comté He'} ]}, {id : 111, nom : 'Lu'an City', district : [ {id : 1017, nom : 'District de Jin'an'}, {id : 1018, nom : 'District de Yuan'}, {id : 1019, nom : 'Comté de Shou'}, {id : 1020, nom : 'Comté de Huoqiu'}, {id : 1021, nom : 'Comté de Shucheng'}, {id : 1022, nom : 'Comté de Jinzhai'}, {id : 1023, nom : 'Comté de Huoshan'} ]}, {id : 112, nom : « Ville de Bozhou », district : [ {id : 1024, nom : 'District de Qiaocheng'}, {id : 1025, nom : 'Comté de Woyang'}, {id : 1026, nom : 'Comté de Mengcheng'}, {id : 1027, nom : 'Comté de Lixin'} ]}, {id : 113, nom : « Ville de Chizhou », district : [ {id : 1028, nom : 'District de Guichi'}, {id : 1029, nom : 'Comté de Dongzhi'}, {id : 1030, nom : 'Comté de Shitai'}, {id : 1031, nom : 'Comté de Qingyang'} ]}, {id : 114, nom : 'Ville de Xuancheng', district : [ {identifiant : 1032, nom : 'District de Xuanzhou'}, {id : 1033, nom : 'Comté de Langxi'}, {id : 1034, nom : 'Comté de Guangde'}, {id : 1035, nom : 'Comté de Jing'}, {id : 1036, nom : 'Comté de Jixi'}, {id : 1037, nom : 'Comté de Jingde'}, {identifiant : 1038, nom : 'Ningguo City'} ]} ]}, {identifiant : 13, nom : 'Fujian', ville : [ {id : 115, nom : « Ville de Fuzhou », district : [ {id : 1039, nom : 'District de Gulou'}, {id : 1040, nom : 'District de Taijiang'}, {id : 1041, nom : 'District de Cangshan'}, {id : 1042, nom : 'zone de prêle'}, {id : 1043, nom : 'District de Jin'an'}, {id : 1044, nom : 'Comté de Minhou'}, {id : 1045, nom : 'Comté de Lianjiang'}, {id : 1046, nom : 'Comté de Luoyuan'}, {identifiant : 1047, nom : 'Comté de Minqing'}, {id : 1048, nom : 'Comté de Yongtai'}, {id : 1049, nom : 'Comté de Pingtan'}, {identifiant : 1050, nom : 'Ville de Fuqing'}, {identifiant : 1051, nom : 'Changle City'} ]}, {id : 116, nom : 'Xiamen City', district : [ {id : 1052, nom : 'District de Siming'}, {id : 1053, nom : 'District de Haicang'}, {id : 1054, nom : 'District de Huli'}, {id : 1055, nom : 'District de Jimei'}, {id : 1056, nom : 'District de Tong'an'}, {id : 1057, nom : 'District de Xiang'an'} ]}, {id : 117, nom : 'Putian City', district : [ {id : 1058, nom : 'District de Chengxiang'}, {identifiant : 1059, nom : 'District de Hanjiang'}, {id : 1060, nom : 'District de Licheng'}, {id : 1061, nom : 'District de Xiuyu'}, {id : 1062, nom : 'Comté de Xianyou'} ]}, {id : 118, nom : 'Sanming City', district : [ {id : 1063, nom : 'District de Mélie'}, {id : 1064, nom : 'zone ternaire'}, {id : 1065, nom : 'Comté de Mingxi'}, {id : 1066, nom : 'Comté de Qingliu'}, {id : 1067, nom : 'Comté de Ninghua'}, {id : 1068, nom : 'Comté de Datian'}, {id : 1069, nom : 'Comté de Youxi'}, {identifiant : 1070, nom : 'Shaxian'}, {id : 1071, nom : 'Comté de Jianle'}, {id : 1072, nom : 'Comté de Taining'}, {id : 1073, nom : 'Comté de Jianning'}, {id : 1074, nom : 'Yong'an City'} ]}, {id : 119, nom : 'Ville de Quanzhou', district : [ {id : 1075, nom : 'District de Licheng'}, {identifiant : 1076, nom : 'District de Fengze'}, {id : 1077, nom : 'District de Luojiang'}, {id : 1078, nom : 'District de Quangang'}, {id : 1079, nom : 'Comté de Hui'an'}, {id : 1080, nom : 'Comté d'Anxi'}, {id : 1081, nom : 'Comté de Yongchun'}, {id : 1082, nom : 'Comté de Dehua'}, {id : 1083, nom : 'Comté de Kinmen'}, {id : 1084, nom : 'Shishi City'}, {identifiant : 1085, nom : 'Ville de Jinjiang'}, {id : 1086, nom : 'Nan'an City'} ]}, {id : 120, nom : « Ville de Zhangzhou », district : [ {id : 1087, nom : 'District de Xiancheng'}, {id : 1088, nom : 'District de Longwen'}, {id : 1089, nom : 'Comté de Yunxiao'}, {id : 1090, nom : 'Comté de Zhangpu'}, {id : 1091, nom : 'Comté de Zhao'an'}, {id : 1092, nom : 'Comté de Changtai'}, {id : 1093, nom : 'Comté de Dongshan'}, {id : 1094, nom : 'Comté de Nanjing'}, {id : 1095, nom : 'Comté de Pinghe'}, {id : 1096, nom : 'Comté de Hua'an'}, {identifiant : 1097, nom : 'Ville de Longhai'} ]}, {id : 121, nom : 'Nanping City', district : [ {id : 1098, nom : 'District de Yanping'}, {id : 1099, nom : 'Comté de Shunchang'}, {id : 1100, nom : 'Comté de Pucheng'}, {id : 1101, nom : 'Comté de Guangze'}, {id : 1102, nom : 'Comté de Songxi'}, {id : 1103, nom : 'Comté de Zhenghe'}, {identifiant : 1104, nom : 'Ville de Shaowu'}, {id : 1105, nom : 'Ville de Wuyishan'}, {id : 1106, nom : 'Jianou City'}, {identifiant : 1107, nom : 'Ville de Jianyang'} ]}, {id : 122, nom : 'Longyan City', district : [ {id : 1108, nom : 'District de Silla'}, {id : 1109, nom : 'Comté de Changting'}, {id : 1110, nom : 'Comté de Yongding'}, {id : 1111, nom : 'Comté de Shanghang'}, {id : 1112, nom : 'Comté de Wuping'}, {id : 1113, nom : 'Comté de Liancheng'}, {identifiant : 1114, nom : 'Zhangping City'} ]}, {id : 123, nom : 'Ningde City', district : [ {id : 1115, nom : 'District de Jiaocheng'}, {id : 1116, nom : 'Comté de Xiapu'}, {id : 1117, nom : 'Comté de Gutian'}, {id : 1118, nom : 'Comté de Pingnan'}, {id : 1119, nom : 'Comté de Shouning'}, {id : 1120, nom : 'Comté de Zhouning'}, {id : 1121, nom : 'Comté de Zherong'}, {id : 1122, nom : 'Fu'an City'}, {identifiant : 1123, nom : 'Fuding City'} ]} ]}, {id : 14, nom : 'Jiangxi', ville : [ {id : 124, nom : 'Nanchang City', district : [ {id : 1124, nom : 'District de Donghu'}, {id : 1125, nom : '西湖区'}, {identifiant : 1126, nom : 'District de Qingyun Pu'}, {id : 1127, nom : 'District de Wanli'}, {id : 1128, nom : 'District du lac Qingshan'}, {id : 1129, nom : 'Comté de Nanchang'}, {id : 1130, nom : 'Nouveau Comté'}, {id : 1131, nom : 'Comté d'Anyi'}, {id : 1132, nom : 'Comté de Jinxian'} ]}, {id : 125, nom : 'Ville de Jingdezhen', district : [ {id : 1133, nom : 'District de Changjiang'}, {id : 1134, nom : 'District de Zhushan'}, {id : 1135, nom : 'Comté de Fuliang'}, {id : 1136, nom : 'Leping City'} ]}, {id : 126, nom : 'Ville de Pingxiang', district : [ {id : 1137, nom : 'District d'Anyuan'}, {id : 1138, nom : 'District de Xiangdong'}, {id : 1139, nom : 'Comté de Lianhua'}, {id : 1140, nom : 'Comté de Shangli'}, {id : 1141, nom : 'Comté de Luxi'} ]}, {id : 127, nom : « Ville de Jiujiang », district : [ {id : 1142, nom : 'District de Lushan'}, {id : 1143, nom : 'District de Xunyang'}, {identifiant : 1144, nom : 'Comté de Jiujiang'}, {id : 1145, nom : 'Comté de Wuning'}, {id : 1146, nom : 'Comté de Xiushui'}, {id : 1147, nom : 'Comté de Yongxiu'}, {id : 1148, nom : 'Comté de De'an'}, {id : 1149, nom : 'Comté de Xingzi'}, {id : 1150, nom : 'Comté de Duchang'}, {id : 1151, nom : 'Comté de Hukou'}, {id : 1152, nom : 'Comté de Pengze'}, {identifiant : 1153, nom : 'Ville de Ruichang'} ]}, {id : 128, nom : 'Ville de Xinyu', district : [ {identifiant : 1154, nom : 'District de Yushui'}, {id : 1155, nom : 'comté de fenyi'} ]}, {id : 129, nom : 'Yingtan City', district : [ {id : 1156, nom : 'District de Yuehu'}, {id : 1157, nom : 'Comté de Yujiang'}, {identifiant : 1158, nom : 'Ville de Guixi'} ]}, {id : 130, nom : « Ville de Ganzhou », district : [ {id : 1159, nom : 'District de Zhanggong'}, {id : 1160, nom : 'Comté de Gan'}, {id : 1161, nom : 'Comté de Xinfeng'}, {id : 1162, nom : 'Comté de Dayu'}, {id : 1163, nom : 'Comté de Shangyou'}, {id : 1164, nom : 'Comté de Chongyi'}, {id : 1165, nom : 'Comté d'Anyuan'}, {id : 1166, nom : 'Comté de Longnan'}, {id : 1167, nom : 'Comté de Dingnan'}, {id : 1168, nom : 'Comté de Quannan'}, {id : 1169, nom : 'Comté de Ningdu'}, {id : 1170, nom : 'Comté de Yudu'}, {id : 1171, nom : 'Comté de Xingguo'}, {id : 1172, nom : 'Comté de Huichang'}, {id : 1173, nom : 'Comté de Xunwu'}, {id : 1174, nom : 'Comté de Shicheng'}, {identifiant : 1175, nom : 'Ville de Ruijin'}, {identifiant : 1176, nom : 'Ville de Nankang'} ]}, {id : 131, nom : 'Ji'an City', district : [ {id : 1177, nom : 'District de Jizhou'}, {id : 1178, nom : 'District de Qingyuan'}, {id : 1179, nom : 'Comté de Ji'an'}, {id : 1180, nom : 'Comté de Jishui'}, {id : 1181, nom : 'Comté de Xiajiang'}, {id : 1182, nom : 'Comté de Xingan'}, {id : 1183, nom : 'Comté de Yongfeng'}, {id : 1184, nom : 'Comté de Taihe'}, {id : 1185, nom : 'Comté de Suichuan'}, {id : 1186, nom : 'Comté de Wan'an'}, {id : 1187, nom : 'Comté d'Anfu'}, {id : 1188, nom : 'Comté de Yongxin'}, {identifiant : 1189, nom : 'Ville de Jinggangshan'} ]}, {id : 132, nom : 'Yichun City', district : [ {identifiant : 1190, nom : 'District de Yuanzhou'}, {id : 1191, nom : 'Comté de Fengxin'}, {id : 1192, nom : 'Comté de Wanzai'}, {id : 1193, nom : 'Comté de Shanggao'}, {id : 1194, nom : 'Comté de Yifeng'}, {id : 1195, nom : 'Comté de Jing'an'}, {id : 1196, nom : 'Comté de Tonggu'}, {id : 1197, nom : 'Ville de Fengcheng'}, {identifiant : 1198, nom : 'Ville de Zhangshu'}, {id : 1199, nom : 'Gao'an City'} ]}, {id : 133, nom : « Ville de Fuzhou », district : [ {identifiant : 1200, nom : 'District de Linchuan'}, {id : 1201, nom : 'Comté de Nancheng'}, {id : 1202, nom : 'Comté de Lichuan'}, {id : 1203, nom : 'Comté de Nanfeng'}, {id : 1204, nom : 'Comté de Chongren'}, {id : 1205, nom : 'Comté de Le'an'}, {id : 1206, nom : 'Comté de Yihuang'}, {id : 1207, nom : 'Comté de Jinxi'}, {id : 1208, nom : 'Comté de Zixi'}, {id : 1209, nom : 'Comté de Dongxiang'}, {identifiant : 1210, nom : 'Comté de Guangchang'} ]}, {id : 134, nom : 'Shangrao City', district : [ {identifiant : 1211, nom : 'District de Xinzhou'}, {id : 1212, nom : 'Comté de Shangrao'}, {id : 1213, nom : 'Comté de Guangfeng'}, {id : 1214, nom : 'Comté de Yushan'}, {id : 1215, nom : 'Comté de Qianshan'}, {id : 1216, nom : 'Comté de Hengfeng'}, {id : 1217, nom : 'Comté de Yiyang'}, {id : 1218, nom : 'Comté de Yugan'}, {id : 1219, nom : 'Comté de Poyang'}, {id : 1220, nom : 'Comté de Wannian'}, {id : 1221, nom : 'Comté de Wuyuan'}, {identifiant : 1222, nom : 'Dexing City'} ]} ]}, {id : 15, nom : 'Shandong', ville : [ {id : 135, nom : 'Jinan City', district : [ {id : 1223, nom : 'District de Lixia'}, {identifiant : 1224, nom : 'District de Shizhong'}, {id : 1225, nom : 'District de Huaiyin'}, {id : 1226, nom : 'District de Tianqiao'}, {id : 1227, nom : 'District de Licheng'}, {identifiant : 1228, nom : 'District de Changqing'}, {id : 1229, nom : 'Comté de Pingyin'}, {id : 1230, nom : 'Comté de Jiyang'}, {id : 1231, nom : 'Comté de Shanghai'}, {identifiant : 1232, nom : 'Ville de Zhangqiu'} ]}, {id : 136, nom : 'Qingdao City', district : [ {id : 1233, nom : 'District de Shinan'}, {identifiant : 1234, nom : 'District de Shibei'}, {id : 1235, nom : 'District de Sifang'}, {id : 1236, nom : 'District de Huangdao'}, {id : 1237, nom : 'District de Laoshan'}, {id : 1238, nom : 'District de Licang'}, {id : 1239, nom : 'District de Chengyang'}, {identifiant : 1240, nom : 'Ville de Jiaozhou'}, {identifiant : 1241, nom : 'Jimo City'}, {id : 1242, nom : 'Pingdu City'}, {id : 1243, nom : 'Jiaonan City'}, {identifiant : 1244, nom : 'Laixi City'} ]}, {id : 137, nom : 'Zibo City', district : [ {identifiant : 1245, nom : 'District de Zichuan'}, {identifiant : 1246, nom : 'District de Zhangdian'}, {id : 1247, nom : 'District de Boshan'}, {id : 1248, nom : 'District de Linzi'}, {id : 1249, nom : 'District de Zhoucun'}, {id : 1250, nom : 'Comté de Huantai'}, {identifiant : 1251, nom : 'Comté de Gaoqing'}, {identifiant : 1252, nom : 'Comté de Yiyuan'} ]}, {id : 138, nom : 'Ville de Zaozhuang', district : [ {identifiant : 1253, nom : 'District de Shizhong'}, {id : 1254, nom : 'District de Xuecheng'}, {id : 1255, nom : 'District de Yicheng'}, {id : 1256, nom : 'District de Taierzhuang'}, {identifiant : 1257, nom : 'District de Shanting'}, {identifiant : 1258, nom : 'Ville de Tengzhou'} ]}, {id : 139, nom : 'Dongying City', district : [ {id : 1259, nom : 'District de Dongying'}, {id : 1260, nom : 'District de Hekou'}, {id : 1261, nom : 'Comté de Kenli'}, {id : 1262, nom : 'Comté de Lijin'}, {id : 1263, nom : 'Comté de Guangrao'} ]}, {id : 140, nom : 'Yantai City', district : [ {identifiant : 1264, nom : 'District de Zhifu'}, {identifiant : 1265, nom : 'District de Fushan'}, {id : 1266, nom : 'District de Muping'}, {id : 1267, nom : 'District de Laishan'}, {id : 1268, nom : 'Comté de Changdao'}, {id : 1269, nom : 'Ville de Longkou'}, {id : 1270, nom : 'Ville de Laiyang'}, {id : 1271, nom : 'Ville de Laizhou'}, {id : 1272, nom : 'Penglai City'}, {identifiant : 1273, nom : 'Ville de Zhaoyuan'}, {identifiant : 1274, nom : 'Ville de Qixia'}, {identifiant : 1275, nom : 'Ville de Haiyang'} ]}, {id : 141, nom : 'Weifang City', district : [ {id : 1276, nom : 'District de Weicheng'}, {identifiant : 1277, nom : 'District de Hanting'}, {id : 1278, nom : 'District de Fangzi'}, {id : 1279, nom : 'District de Kuiwen'}, {id : 1280, nom : 'Comté de Linqu'}, {id : 1281, nom : 'Comté de Changle'}, {identifiant : 1282, nom : 'Ville de Qingzhou'}, {identifiant : 1283, nom : 'Zhucheng'}, {id : 1284, nom : 'Ville de Shouguang'}, {identifiant : 1285, nom : 'Ville d'Anqiu'}, {identifiant : 1286, nom : 'Gaomi City'}, {identifiant : 1287, nom : 'Ville de Changyi'} ]}, {id : 142, nom : 'Jining City', district : [ {identifiant : 1288, nom : 'District de Shizhong'}, {id : 1289, nom : 'District de Rencheng'}, {id : 1290, nom : 'Comté de Weishan'}, {id : 1291, nom : 'Comté de Yutai'}, {id : 1292, nom : 'Comté de Jinxiang'}, {id : 1293, nom : 'Comté de Jiaxiang'}, {id : 1294, nom : 'Comté de Wenshang'}, {id : 1295, nom : 'Comté de Sishui'}, {id : 1296, nom : 'Comté de Liangshan'}, {id : 1297, nom : 'Qufu City'}, {identifiant : 1298, nom : 'Ville de Yanzhou'}, {identifiant : 1299, nom : 'Ville de Zoucheng'} ]}, {id : 143, nom : 'Tai'an City', district : [ {id : 1300, nom : 'District de Taishan'}, {identifiant : 1301, nom : 'District de Daiyue'}, {id : 1302, nom : 'Comté de Ningyang'}, {id : 1303, nom : 'Comté de Dongping'}, {identifiant : 1304, nom : 'Ville de Xintai'}, {identifiant : 1305, nom : 'Ville de Feicheng'} ]}, {id : 144, nom : 'Weihai City', district : [ {id : 1306, nom : 'District de Huancui'}, {id : 1307, nom : 'Wendeng City'}, {id : 1308, nom : 'Ville de Rongcheng'}, {identifiant : 1309, nom : 'Rushan City'} ]}, {id : 145, nom : 'Rizhao City', district : [ {id : 1310, nom : 'District de Donggang'}, {id : 1311, nom : 'District de Lanshan'}, {id : 1312, nom : 'Comté de Wulian'}, {identifiant : 1313, nom : 'Comté de Ju'} ]}, {id : 146, nom : 'Ville de Laiwu', district : [ {id : 1314, nom : 'District de Laicheng'}, {identifiant : 1315, nom : 'District de Gangcheng'} ]}, {id : 147, nom : 'Linyi City', district : [ {id : 1316, nom : 'District de Lanshan'}, {identifiant : 1317, nom : 'District de Luozhuang'}, {id : 1318, nom : 'District de Hedong'}, {id : 1319, nom : 'Comté de Yinan'}, {id : 1320, nom : 'Comté de Tancheng'}, {id : 1321, nom : 'Comté de Yishui'}, {id : 1322, nom : 'Comté de Cangshan'}, {id : 1323, nom : 'Comté de Fei'}, {id : 1324, nom : 'Comté de Pingyi'}, {id : 1325, nom : 'Comté de Junan'}, {id : 1326, nom : 'Comté de Mengyin'}, {identifiant : 1327, nom : 'Comté de Linshu'} ]}, {id : 148, nom : « ville de Dezhou », district : [ {id : 1328, nom : 'District de Decheng'}, {id : 1329, nom : 'Comté de Ling'}, {id : 1330, nom : 'Comté de Ningjin'}, {id : 1331, nom : 'Comté de Qingyun'}, {id : 1332, nom : 'Comté de Linyi'}, {id : 1333, nom : 'Comté de Qihe'}, {id : 1334, nom : 'Comté de Pingyuan'}, {id : 1335, nom : 'Comté de Xiajin'}, {id : 1336, nom : 'Comté de Wucheng'}, {id : 1337, nom : 'Leling City'}, {identifiant : 1338, nom : 'Ville de Yucheng'} ]}, {id : 149, nom : 'Liaocheng', district : [ {id : 1339, nom : 'District de Dongchangfu'}, {id : 1340, nom : 'Comté de Yanggu'}, {id : 1341, nom : 'Comté de Xin'}, {id : 1342, nom : 'Comté de Chiping'}, {id : 1343, nom : 'Comté de Donga'}, {id : 1344, nom : 'Comté de Guan'}, {id : 1345, nom : 'Comté de Gaotang'}, {identifiant : 1346, nom : 'Ville de Linqing'} ]}, {id : 150, nom : 'Ville de Binzhou', district : [ {id : 1347, nom : 'District de Bincheng'}, {id : 1348, nom : 'Comté de Huimin'}, {id : 1349, nom : 'Comté de Yangxin'}, {id : 1350, nom : 'Comté de Wudi'}, {id : 1351, nom : 'Comté de Zhanhua'}, {id : 1352, nom : 'Comté de boxe'}, {id : 1353, nom : 'Comté de Zouping'} ]}, {id : 151, nom : 'Heze City', district : [ {id : 1354, nom : 'District des Pivoines'}, {id : 1355, nom : 'Comté de Cao'}, {id : 1356, nom : 'Comté de Shan'}, {id : 1357, nom : 'Comté de Chengwu'}, {id : 1358, nom : 'Comté de Juye'}, {id : 1359, nom : 'Comté de Yuncheng'}, {id : 1360, nom : 'Comté de Juancheng'}, {id : 1361, nom : 'Comté de Dingtao'}, {id : 1362, nom : 'Comté de Dongming'} ]} ]}, {id : 16, nom : 'Henan', ville : [ {id : 152, nom : « Ville de Zhengzhou », district : [ {id : 1363, nom : 'District de Zhongyuan'}, {id : 1364, nom : 'District d'Erqi'}, {id : 1365, nom : 'District de Guancheng Hui'}, {identifiant : 1366, nom : 'District de Jinshui'}, {identifiant : 1367, nom : 'Shangjiejie'}, {id : 1368, nom : 'District de Huiji'}, {id : 1369, nom : 'Comté de Zhongmu'}, {id : 1370, nom : 'Ville de Gongyi'}, {id : 1371, nom : 'Ville de Xingyang'}, {id : 1372, nom : 'Xinmi City'}, {id : 1373, nom : 'Ville de Xinzheng'}, {identifiant : 1374, nom : 'Ville de Dengfeng'} ]}, {id : 153, nom : 'Kaifeng City', district : [ {id : 1375, nom : 'District de Longting'}, {id : 1376, nom : 'District de Shunhe Hui'}, {id : 1377, nom : 'District de Gulou'}, {id : 1378, nom : 'District de Nanguan'}, {id : 1379, nom : 'banlieue'}, {identifiant : 1380, nom : 'Qixian'}, {id : 1381, nom : 'Comté de Tongxu'}, {id : 1382, nom : 'Comté de Weishi'}, {id : 1383, nom : 'Comté de Kaifeng'}, {id : 1384, nom : 'Comté de Lankao'} ]}, {id : 154, nom : « Ville de Luoyang », district : [ {id : 1385, nom : 'Vieille Ville'}, {id : 1386, nom : 'District de Xigong'}, {id : 1387, nom : 'District de Jianhe Hui'}, {identifiant : 1388, nom : 'District de Jianxi'}, {identifiant : 1389, nom : 'District de Geely'}, {id : 1390, nom : 'District de Luolong'}, {id : 1391, nom : 'Comté de Mengjin'}, {id : 1392, nom : 'Comté de Xin'an'}, {id : 1393, nom : 'Comté de Luanchuan'}, {id : 1394, nom : 'Comté de Song'}, {id : 1395, nom : 'Comté de Ruyang'}, {id : 1396, nom : 'Comté de Yiyang'}, {id : 1397, nom : 'Comté de Luoning'}, {id : 1398, nom : 'Comté de Yichuan'}, {identifiant : 1399, nom : 'Yanshi City'} ]}, {id : 155, nom : 'Ville de Pingdingshan', district : [ {id : 1400, nom : 'District de Xinhua'}, {identifiant : 1401, nom : 'District de Weidong'}, {id : 1402, nom : 'District de Shilong'}, {identifiant : 1403, nom : 'District de Zhanhe'}, {id : 1404, nom : 'Comté de Baofeng'}, {id : 1405, nom : 'Comté de Ye'}, {id : 1406, nom : 'Comté de Lushan'}, {identifiant : 1407, nom : 'Comté de Jia'}, {id : 1408, nom : 'Ville de Wugang'}, {identifiant : 1409, nom : 'Ville de Ruzhou'} ]}, {id : 156, nom : 'Anyang City', district : [ {id : 1410, nom : 'District de Wenfeng'}, {id : 1411, nom : 'District de Beiguan'}, {id : 1412, nom : 'District de Yindu'}, {id : 1413, nom : 'District de Long'an'}, {id : 1414, nom : 'Comté d'Anyang'}, {id : 1415, nom : 'Comté de Tangyin'}, {id : 1416, nom : 'Comté de Hua'}, {id : 1417, nom : 'Comté de Neihuang'}, {identifiant : 1418, nom : 'Ville de Linzhou'} ]}, {id : 157, nom : 'Hebi City', district : [ {id : 1419, nom : 'District de Heshan'}, {id: 1420, name: '山城區'}, {id: 1421, name: '淇濱區'}, {id: 1422, name: '浚縣'}, {id: 1423, name: '淇縣'} ]}, {id: 158, name: '新鄉市', district: [ {id: 1424, name: '紅旗區'}, {id: 1425, name: '衛濱區'}, {id: 1426, name: '鳳泉區'}, {id: 1427, name: '牧野區'}, {id: 1428, name: '新鄉縣'}, {id: 1429, 名稱: '獲嘉縣'}, {id: 1430, name: '原陽縣'}, {id: 1431, name: '延津縣'}, {id: 1432, name: '封丘縣'}, {id: 1433, name: '長垣縣'}, {id: 1434, name: '衛輝市'}, {id: 1435, name: '輝縣市'} ]}, {id: 159, name: '焦作市', district: [ {id: 1436, name: '解放區'}, {id: 1437, name: '中站區'}, {id: 1438, name: '馬村區'}, {id: 1439, name: '山陽區'}, {id: 1440, name: '修武縣'}, {id: 1441, name: '博愛縣'}, {id: 1442, name: '武陟縣'}, {id: 1443, name: '溫縣'}, {id: 1444, name: '濟源市'}, {id: 1445, name: '沁陽市'}, {id: 1446, name: '孟州市'} ]}, {id: 160, name: '濮陽市', district: [ {id: 1447, name: '華龍區'}, {id: 1448, name: '清豐縣'}, {id: 1449, name: '南樂縣'}, {id: 1450, name: '範縣'}, {id: 1451, name: '台前縣'}, {id: 1452, name: '濮陽縣'} ]}, {id: 161, name: '許昌市', district: [ {id: 1453, name: '魏都區'}, {id: 1454, name: '許昌縣'}, {id: 1455, name: '鄢陵縣'}, {id: 1456, name: '襄城縣'}, {id: 1457, name: '禹州市'}, {id: 1458, name: '長葛市'} ]}, {id: 162, name: '漯河市', district: [ {id: 1459, name: '來源匯區'}, {id: 1460, name: '郾城區'}, {id: 1461, name: '召陵區'}, {id: 1462, name: '舞陽縣'}, {id: 1463, name: '臨頦縣'} ]}, {id: 163, name: '三門峽市', district: [ {id: 1464, name: '市轄區'}, {id: 1465, name: '湖濱區'}, {id: 1466, name: '澠池縣'}, {id: 1467, name: '陝縣'}, {id: 1468, name: '盧氏縣'}, {id: 1469, name: '義馬市'}, {id: 1470, name: '靈寶市'} ]}, {id: 164, name: '南陽市', district: [ {id: 1471, name: '宛城區'}, {id: 1472, name: '臥龍區'}, {id: 1473, name: '南召縣'}, {id: 1474, name: '方城縣'}, {id: 1475, name: '西峽縣'}, {id: 1476, name: '鎮平縣'}, {id: 1477, name: '內鄉縣'}, {id: 1478, name: '淅川縣'}, {id: 1479, name: '社旗縣'}, {id: 1480, name: '唐河縣'}, {id: 1481,