zoukankan      html  css  js  c++  java
  • html+jq实现全国省的单选,弹框输入input

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>省单选组件jq</title>
    <script src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js"></script>
    </head>
    <body>
        <div class="area">
            <input class="form-control" type="text" id="province" name="province" value="" onfocus="setStyle()" placeholder="请输入省份(不填默认全国投放)">
            <div id="content">
                <div id="areaList">
    
                </div>
                <button class="reset">取消</button>
                <button onClick='get()'>确认</button>
            </div>
        </div>
    </body>
    <script src="./address.js"></script>
    <script>
        function getData(){
            let areasList = []
            for(item in areas){
                let citys = []
                let objs = {
                    province:item,
                    citys:item.indexOf("") != -1?'':citys,
                    show:false,
                    IsCheckeds:false
                }
                for(i in areas[item]){
                    let obj = {
                        city:areas[item][i],
                        IsChecked:false
                    }
                    citys.push(obj)
                }
                areasList.push(objs)
            }
            console.log(areasList)
            view(areasList)
        }
        function view(areasList){
            $(areasList).each(function(i){
                var str="<label class='radio'><input type='radio' value='"+this.province+"' name='area'>"+this.province+"<span>("+this.citys.length+")</span></label>";
                var a=$(str);
                a.appendTo($("#areaList"))
            })
        }
        function setStyle(){
            $('#content').toggleClass('display')
        }
        function get(){
            let arr = []
            $('input[name="area"]').each(function(){
                if($(this).prop('checked'))  $('#province').val($(this).val())
            })
        }
        getData()
    </script>
    <script>
        $(function(){
            $('#content').click(function(){
                $(this).toggleClass('display')
            })
            $('.reset').click(function(){
                $('#content').removeClass('display')
                event.stopPropagation();         //阻止按钮穿透
            })
        })
    </script>
    <style>
    .area #content{
        position: absolute;
        left: 8px;
        top: 44px;
        width: 600px;
        border: 1px solid #ccc3c3;
        border-radius: 3px;
        padding: 10px 0;
        display: none;
        background: white;
    }
    #content button{
        float: right;
    }
    #province{
        width: 400px;
        line-height: 28px;
        text-indent: 10px;
    }
    .display{
        display: block!important;
    }
    .radio{
        font-size: 14px;
        margin:10px 15px;
        display: inline-block;
    }
    </style>

    效果一般,帮后台写的,vue框架与tp5框架不知道 咋兼容,

    下一篇:纯vue.js实现省市选择

  • 相关阅读:
    运用jQuery实现动态点赞
    $scope作用及模块化解决全局问题
    angular数据绑定---js全局学习
    HDU 2102 A计划 (深搜)
    ffmpeg 常用命令汇总
    基于Red5与ffmpeg实现rtmp处理NVR或摄像头的监控视频处理方案
    Linux 下编写.sh文件运行JAR下的Class
    如何帮助团队完成一个优秀的API文档,Swagger和Spring Rest Docs两个都是十分优秀的工具!...
    你关心的学历问题在这里
    北京一二线大厂以及程序员层级分布
  • 原文地址:https://www.cnblogs.com/wd163/p/13524446.html
Copyright © 2011-2022 走看看