码迷,mamicode.com
首页 > 其他好文 > 详细

中国省市县级地址联级

时间:2017-12-18 14:10:38      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:sheet   ref   http   link   his   调用   one   hash   省市县   

插件库:http://www.jq22.com

使用方法:

1、引入:

<link rel="stylesheet" href="css/ydui.css?rev=@@hash">

<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script> <script src="js/ydui.citys.js"></script> <script src="js/ydui.js"></script>

2、初始换

    /**
     * 默认调用
     */
    !function () {
        var $target = $(‘#J_Address‘);

        $target.citySelect();

        $target.on(‘click‘, function (event) {
            event.stopPropagation();
            $target.citySelect(‘open‘);
        });

        $target.on(‘done.ydui.cityselect‘, function (ret) {
            $(this).val(ret.provance + ‘ ‘ + ret.city + ‘ ‘ + ret.area);
        });
    }();

/** * 设置默认值 */ !function () { var $target = $(‘#J_Address2‘); $target.citySelect({ provance: ‘广东‘, city: ‘深圳市‘, area: ‘南山区‘ }); $target.on(‘click‘, function (event) { event.stopPropagation(); $target.citySelect(‘open‘); }); $target.on(‘done.ydui.cityselect‘, function (ret) { $(this).val(ret.provance + ‘ ‘ + ret.city + ‘ ‘ + ret.area); }); }();

  

  

中国省市县级地址联级

标签:sheet   ref   http   link   his   调用   one   hash   省市县   

原文地址:http://www.cnblogs.com/leaf930814/p/8056951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!