function xiangmu(){ var sf = '四川'; p_province(sf); get_city(sf); function get_city(sf) { $.post('/fcontent/get_city', { province: sf }, function(data) { if(data.status) { var store = data.data; $(".netcity").empty(); $(".netcity").append(''); $.each(store, function(index,val){ var str2=' '; $(".netcity").append(str2); }); }else { $(".netcity").empty().html(''); } },'json') } function p_province(sf) { $.post('/fcontent/get_province', { province: sf }, function(data) { if(data.status) { var store = data.data; $(".city-list").empty(); $.each(store, function(index,val){ var str = '
  • '+val.title +'

    '+val.zhiwu +'

    ' +val.tel+'

  • '; $(".city-list").append(str); }); }else { $(".city-list").empty().html('
  • 当前城市暂无网点!

  • '); } },'json') } function p_city(sf,sc) { $.post('/fcontent/get_distribution', { province: sf,city:sc }, function(data) { if(data.status) { var store = data.data; $(".city-list").empty(); $.each(store, function(index,val){ var str = '
  • '+val.title +'

    '+val.zhiwu +'

    ' +val.tel+'

  • '; $(".city-list").append(str); }); }else { $(".city-list").empty().html('
  • 当前城市暂无网点!

  • '); } },'json') } //下拉省份点击 $("#allprovince").change(function() { sf = $(this).children('option:selected').val(); p_province(sf); get_city(sf); $('.maplist li .maptext').each(function(i,otxt) { if(sf == $(otxt).text()) { $(otxt).parents('li').addclass('cur').siblings().removeclass('cur'); } }); }); //下拉市区点击 $("#netcity").change(function() { sc = $(this).children('option:selected').val(); if(sc!='暂无可选城市'&&sc!='请选择城市'){ p_city(sf,sc); } }); //地图省份点击 $(".maplist li").click(function() { var val = $(this).find(".maptext").text(); $(".maplist").find("li").removeclass("cur") $(this).addclass('cur'); $("#allprovince").val(val).trigger("change"); //p_province(sf); }); }