This article shares the specific code of js to realize the three-level selection of provinces, cities and districts for your reference. The specific content is as follows Code: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <select id="province"> <option>---Please select---</option> </select> <select id="city"> <option>---Please select---</option> </select> <select id="area"> <option>---Please select---</option> </select> <script src="addr.js"></script> <script src="../lib/jquery-3.3.1.js"></script> <script> var pro = []; $(function (){ $.each(temp,function (){ $("#province").append("<option>"+$(this)[0].label+"</option>"); }); $("#province").on("change",function (){ $("#city").html("<option>"+"---Please select---"+"</option>"); $("#area").html("<option>"+"---Please select---"+"</option>") var select_pro = $(this).val(); $.each(temp,function (index,element){ if (element.label == select_pro){ var city = element.children; for (let i = 0; i < city.length ; i++) { $("#city").append("<option>"+city[i].label+"</option>"); } $("#city").on('change',function () { $("#area").html("<option>"+"---Please select---"+"</option>"); var select_city = $(this).val(); for (var i=0;i < city.length ; i++) { console.log(city[i].label); if (city[i].label == select_city) { var area = city[i].children; for (var i=0;i < area.length ; i++) { $("#area").append("<option>"+area[i].label+"</option>"); } } } }); } }); }); }); </script> </body> </html> The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to monitor and delete timed out sessions in Tomcat
>>: One sql statement completes MySQL deduplication and keeps one
Table of contents background Compile glibc 2.14 M...
Many times we want the server to run a script reg...
Table of contents 1. What I am going to talk abou...
Docker Compose Introduction to Compose Compose is...
This article shares the specific code of Vue to i...
Original source: www.bamagazine.com There are nar...
Passive Check With passive health checks, NGINX a...
Table of contents 1. Handwritten instanceof 2. Im...
HTML Part Copy code The code is as follows: <!D...
Table of contents front end According to the abov...
The complete steps of Centos7 bridge network conf...
Operating system: Alibaba Cloud ESC instance cent...
nginx installation Ensure that the virtual machin...
Adding/removing classes to elements is a very com...
The EXPLAIN statement provides information about ...