intention.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. $('.yx_click').on('click','li',function(){
  2. $(this).attr('class','on').siblings().attr('class','');
  3. $(this).append('<img src="/image/singup/goufangxuqiu/yx_2.png" alt="">').siblings().find('img').remove();
  4. var _dataid = $(this).parent().attr('dataid');
  5. var _texthtml = $(this).text();
  6. $('.yx_signup input[dataid="'+_dataid+'"]').attr('value',_texthtml);
  7. })
  8. var _length = $('.dg_click li.on').length; //获取选中的数量
  9. // console.log(_length);
  10. $('.dg_click').on('click','li',function(){
  11. var _html = $(this).text(); //获取文字
  12. var _class = $(this).attr('class');
  13. if(_class == 'on'){ //点击选中 在点击关闭
  14. $(this).attr('class','');
  15. $(this).find('img').remove();
  16. }else{
  17. if(_length < 3){ // 限制最多选3个
  18. $(this).attr('class','on');
  19. $(this).append('<img src="/image/singup/goufangxuqiu/yx_2.png" alt="">');
  20. }else{
  21. $('.m_remind').fadeIn(200);
  22. setTimeout(function(){
  23. $('.m_remind').fadeOut(200);
  24. },2000);
  25. }
  26. }
  27. if (_html == '不限') { // 判断 不限 和 内容 只能选一个
  28. $(this).siblings().attr('class','').find('img').remove();
  29. $(this).attr('class','on').append('<img src="/image/singup/goufangxuqiu/yx_2.png" alt="">');
  30. $('.m_remind').hide();
  31. }else{
  32. $('.dg_click li').first().attr('class','').find('img').remove();
  33. }
  34. _length = $('.dg_click li.on').length; //获取选中的数量
  35. // console.log(_length);
  36. if(_length == 0){ // 限制最多选3个
  37. // console.log('是是是');
  38. $('.dg_click li').first().attr('class','on').append('<img src="/image/singup/goufangxuqiu/yx_2.png" alt="">');
  39. }
  40. })
  41. var objective;
  42. // 获取类型
  43. var arr = new Array();
  44. $('.m_button').on('click',function(){
  45. arr.splice(0,arr.length);
  46. $('.dg_click li.on').each(function(){
  47. var styleText = $(this).text();
  48. arr.push(styleText);
  49. })
  50. objective = arr.join(",");
  51. // console.log(objective);
  52. $('.yx_signup .m_style').attr('value',objective);
  53. })
  54. $(window).scroll(function (){
  55. var ster = $(this).scrollTop();
  56. navign3(ster);
  57. });
  58. function navign3(st){
  59. if(st >180){
  60. $('.news_nav').show();
  61. $('.m_title').show();
  62. $('.m_be img').attr('src','/image/back_1.png');
  63. $('.menu img').attr('src','/image/menu_a_1.png');
  64. $('.m_top').attr('id','');
  65. $('.xm_v2logo').show();
  66. }else{
  67. // $('.m_top').css('background','rgba(0,0,0,0)');
  68. $('.m_title').hide();
  69. $('.news_nav').hide();
  70. $('.m_be img').attr('src','/image/indexv2_18.png');
  71. $('.menu img').attr('src','/image/menu_a02.png');
  72. $('.m_top').attr('id','m_top');
  73. $('.xm_v2logo').hide();
  74. }
  75. }
  76. // 头部导航
  77. $('.m_top').show();
  78. $('.m_title').hide();
  79. $('.m_be img').attr('src','/image/indexv2_18.png');
  80. $('.menu img').attr('src','/image/menu_a02.png');
  81. $('.m_top').attr('id','m_top');
  82. //报名验证及提交的调用
  83. PublicAction.AjaxSend(
  84. {
  85. CORID:'appleBm_buttom', /*操作ID*/
  86. }
  87. );