123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- $('.yx_click').on('click','li',function(){
- $(this).attr('class','on').siblings().attr('class','');
- $(this).append('<img src="/image/singup/goufangxuqiu/yx_2.png" alt="">').siblings().find('img').remove();
- var _dataid = $(this).parent().attr('dataid');
- var _texthtml = $(this).text();
- $('.yx_signup input[dataid="'+_dataid+'"]').attr('value',_texthtml);
- })
- var _length = $('.dg_click li.on').length; //获取选中的数量
- // console.log(_length);
- $('.dg_click').on('click','li',function(){
-
- var _html = $(this).text(); //获取文字
- var _class = $(this).attr('class');
-
- if(_class == 'on'){ //点击选中 在点击关闭
- $(this).attr('class','');
- $(this).find('img').remove();
- }else{
- if(_length < 3){ // 限制最多选3个
- $(this).attr('class','on');
- $(this).append('<img src="/image/singup/goufangxuqiu/yx_2.png" alt="">');
- }else{
- $('.m_remind').fadeIn(200);
- setTimeout(function(){
- $('.m_remind').fadeOut(200);
- },2000);
- }
- }
- if (_html == '不限') { // 判断 不限 和 内容 只能选一个
- $(this).siblings().attr('class','').find('img').remove();
- $(this).attr('class','on').append('<img src="/image/singup/goufangxuqiu/yx_2.png" alt="">');
- $('.m_remind').hide();
- }else{
- $('.dg_click li').first().attr('class','').find('img').remove();
- }
- _length = $('.dg_click li.on').length; //获取选中的数量
- // console.log(_length);
- if(_length == 0){ // 限制最多选3个
- // console.log('是是是');
- $('.dg_click li').first().attr('class','on').append('<img src="/image/singup/goufangxuqiu/yx_2.png" alt="">');
- }
- })
- var objective;
- // 获取类型
- var arr = new Array();
- $('.m_button').on('click',function(){
- arr.splice(0,arr.length);
- $('.dg_click li.on').each(function(){
- var styleText = $(this).text();
- arr.push(styleText);
- })
- objective = arr.join(",");
- // console.log(objective);
- $('.yx_signup .m_style').attr('value',objective);
- })
- $(window).scroll(function (){
- var ster = $(this).scrollTop();
- navign3(ster);
- });
- function navign3(st){
- if(st >180){
- $('.news_nav').show();
- $('.m_title').show();
- $('.m_be img').attr('src','/image/back_1.png');
- $('.menu img').attr('src','/image/menu_a_1.png');
- $('.m_top').attr('id','');
- $('.xm_v2logo').show();
- }else{
- // $('.m_top').css('background','rgba(0,0,0,0)');
- $('.m_title').hide();
- $('.news_nav').hide();
- $('.m_be img').attr('src','/image/indexv2_18.png');
- $('.menu img').attr('src','/image/menu_a02.png');
- $('.m_top').attr('id','m_top');
- $('.xm_v2logo').hide();
- }
- }
- // 头部导航
- $('.m_top').show();
- $('.m_title').hide();
- $('.m_be img').attr('src','/image/indexv2_18.png');
- $('.menu img').attr('src','/image/menu_a02.png');
- $('.m_top').attr('id','m_top');
- //报名验证及提交的调用
- PublicAction.AjaxSend(
- {
- CORID:'appleBm_buttom', /*操作ID*/
- }
- );
|