123456789101112131415161718192021222324252627282930313233343536373839 |
- $(function(){
- // 2018-12-1 切换城市 国内外切换
- $('.switchover_box a').on('click',function(){
- var that = $(this);
- that.addClass('on').siblings().removeClass('on');
- var oid = that.attr('data-id');
- $('.inl').fadeOut();
- $('#'+oid).fadeIn();
-
- if(oid == 'overseas'){
- $('.overseas_nav dl dd').eq(0).click();
- }
- })
- // 国外城市筛选
- $('.overseas_nav dl dd').on('click',function(){
- var _this = $(this);
- _this.addClass('on').siblings().removeClass('on');
- var cityID = _this.attr('data-id');
- var _html = '';
- $.ajax({
- url: "/city/sonlist",
- data:{pid:cityID},
- type: "POST",
- dataType: "json",
- success: function(data) {//请求成功完成后要执行的方法
- if(data.code == 200){
- $.each(data.data,function(k,v){
- _html += '<a href="'+v.url+'">'+v.city_name+'</a>';
- })
- $('.overseas_a').html(_html);
- return false;
- }
- $('.overseas_a').html('');
- }
- });
- })
- })
|