• javascript二级省市select联动菜单


    需要用到这种效果,但是看到网上找的写得又太高深,干脆就自动动手了,,哈哈。。。

    先写了个二级的,三级的原理也是一样的啦,不过目前我都没用到它。。。

     打个包给分享给需要的朋友吧,一定要location_cn.js才能用哦。。。

     下载

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <style type="text/css">
    select{width:88px;}
    </style>
    <script type="text/javascript" src="location_cn.js"></script>
    <script type="text/javascript">
    window.onload=function(){
        var oProvince=document.form1.province;
        var oCity=document.form1.city;
        var oBtn=document.getElementById('btn1');
        for(var i=0;i<aProvince.length;i++){
            oProvince.options[i]=new Option(aProvince[i]);
        }
        for(var i=0;i<aCity[0].length;i++){
            oCity.options[i]=new Option(aCity[0][i]);
        }
        
        oProvince.onchange=function(){
            oCity.length=0;
            for(var i=0;i<aCity[this.selectedIndex].length;i++){
                oCity.options[i]=new Option(aCity[this.selectedIndex][i]);
            }
        };
        oBtn.onclick=function(){
            alert('哇哦!您的所在地是:【'+oProvince.options[oProvince.selectedIndex].text+' - '+oCity.options[oCity.selectedIndex].text+'');    
        };
    };
    
    </script>
    </head>
    
    <body>
    <form name="form1">
        <select name="province"></select>
        <select name="city"></select>
        <input type="button" value="提交" id="btn1" />
    </form>
    </body>
    </html>
  • 相关阅读:
    学习路线
    环境搭建时用到的文档
    商城技术重点分析
    svn 忽略文件
    实用的css3 学习笔记
    转载 《AngularJS》5个实例详解Directive(指令)机制
    php 单例设计模式 example
    html5 图片转base64预览显示
    curl返回常见错误码
    jquery的end(),addBack()方法example
  • 原文地址:https://www.cnblogs.com/hejia/p/2950333.html
Copyright © 2020-2023  润新知