filtrate.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. $(function(){
  2. // 2018-12-1 切换城市 国内外切换
  3. $('.switchover_box a').on('click',function(){
  4. var that = $(this);
  5. that.addClass('on').siblings().removeClass('on');
  6. var oid = that.attr('data-id');
  7. $('.inl').fadeOut();
  8. $('#'+oid).fadeIn();
  9. if(oid == 'overseas'){
  10. $('.overseas_nav dl dd').eq(0).click();
  11. }
  12. })
  13. // 国外城市筛选
  14. $('.overseas_nav dl dd').on('click',function(){
  15. var _this = $(this);
  16. _this.addClass('on').siblings().removeClass('on');
  17. var cityID = _this.attr('data-id');
  18. var _html = '';
  19. $.ajax({
  20. url: "/city/sonlist",
  21. data:{pid:cityID},
  22. type: "POST",
  23. dataType: "json",
  24. success: function(data) {//请求成功完成后要执行的方法
  25. if(data.code == 200){
  26. $.each(data.data,function(k,v){
  27. _html += '<a href="'+v.url+'">'+v.city_name+'</a>';
  28. })
  29. $('.overseas_a').html(_html);
  30. return false;
  31. }
  32. $('.overseas_a').html('');
  33. }
  34. });
  35. })
  36. })