js implements simple provincial, municipal and district three-level selection cascade

js implements simple provincial, municipal and district three-level selection cascade

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:
  • A complete example of a national provincial and municipal secondary linkage drop-down selection menu implemented by js
  • PHP+Mysql+Ajax+JS realizes the linkage between provinces, cities and districts
  • JS makes a simple three-level linkage
  • Select cascading drop-down box example in Vue.js 2.0
  • The best provincial and municipal secondary linkage native js to achieve what you deserve
  • JS real multi-level linkage drop-down menu class, easily realize the linkage menu of provinces, cities and districts!
  • JavaScript realizes the three-level linkage drop-down box menu of provinces, cities and districts
  • Province, city and district three-level linkage drop-down box menu javascript version
  • jquery+json universal three-level linkage drop-down list
  • js to achieve the effect code of cascading drop-down menu of provinces and cities across the country

<<:  How to monitor and delete timed out sessions in Tomcat

>>:  One sql statement completes MySQL deduplication and keeps one

Recommend

Beginners learn some HTML tags (3)

Related articles: Beginners learn some HTML tags ...

How to install mysql on centos and set up remote access

1. Download the mysql repo source $ wget http://r...

MySQL database operations (create, select, delete)

MySQL Create Database After logging into the MySQ...

Detailed explanation of the usage of scoped slots in Vue.js slots

Table of contents No slots Vue2.x Slots With slot...

A brief discussion of four commonly used storage engines in MySQL

Introduction to four commonly used MySQL engines ...

Web development tutorial cross-domain solution detailed explanation

Preface This article mainly introduces the cross-...

Two ways to start Linux boot service

Table of contents rc.local method chkconfig metho...

Analysis of the reasons why MySQL field definitions should not use null

Why is NULL so often used? (1) Java's null Nu...

Installation method of MySQL 5.7.18 decompressed version under Win7x64

Related reading: Solve the problem that the servi...

HTML simple web form creation example introduction

<input> is used to collect user information ...

How to detect file system integrity based on AIDE in Linux

1. AIDE AIDE (Advanced Intrusion Detection Enviro...

Detailed explanation of keywords and reserved words in MySQL 5.7

Preface The keywords of MySQL and Oracle are not ...

Common symbols in Unicode

Unicode is a character encoding scheme developed ...

Elementui exports data to xlsx and excel tables

Recently, I learned about the Vue project and cam...