public.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. $(function(){
  2. // 首页导航2
  3. $(".productul li a").each(function(){
  4. $(this).click(function(){
  5. $(".productul li a").find("i").remove();
  6. $(this).append("<i></i>");
  7. $(".productul li a").css("color","#232323");
  8. $(this).css("color","#104d9f");
  9. })
  10. })
  11. $("footer a").each(function(){
  12. $(this).click(function(){
  13. $("footer a").removeClass("active");
  14. $(this).addClass("active");
  15. })
  16. });
  17. // 房产信息切换
  18. $('.productul a').click(function() {
  19. $(".productcont > div").removeClass("show");
  20. $('#' + $(this).attr('title')).addClass('show');
  21. });
  22. // 批量选择
  23. $(".check").click(function(){
  24. $(".mycheck").removeClass("hide");
  25. $(this).find("span").html("批量推介");
  26. })
  27. $(".attenManage").click(function(){
  28. $(this).find("span").html("取消关注");
  29. $(".buygo").css("display","none");
  30. })
  31. $(".recomMoney a").each(function(){
  32. $(this).click(function(){
  33. $(".recomMoney a").removeClass("active");
  34. $(this).addClass("active");
  35. })
  36. });
  37. // 推介详情
  38. $('.recommUl a').click(function() {
  39. $(".recomInfo > div").removeClass("show");
  40. $('#' + $(this).attr('title')).addClass('show');
  41. });
  42. // 订单跟踪详情
  43. $('.orderUL a').click(function() {
  44. $(".orderInfo > div").removeClass("show");
  45. $('#' + $(this).attr('title')).addClass('show');
  46. });
  47. })