选项卡效果、省市联动效果
选项卡效果
$(function () {
    //用户中心Tab选项卡
    var $tab_li = $(".tab  li");
    var $tab_box = $(".box .con");
$tab_li.click(function () {
        $(this).addClass("active")
                .siblings()
                .removeClass("active");
        var index = $tab_li.index(this);
        $tab_box.hide();
        $tab_box.eq(index).show();
    });
省市联动
    GetAreaJson(0, $("#province"));
        //$("#province").change(function() {
        //});
        $(".con").find("select").change(function () {
            $(this).parent().nextAll().find("select").find("option").remove();
            $(this).parent().nextAll().find("select").append("<option value='-1'>请选择</option>");
            GetAreaJson($(this).find("option:selected").val(), $(this).parent().next().find("select"));
        });
                    
                
                
            
        
浙公网安备 33010602011771号