if (/(iPhone|iPad|iPod|iOS|Android)/i.test(navigator.userAgent)) { //绉诲姩绔 //location.href = '../mobile/index.html'; } var search = $('#j-search'); var yqyyList = $('#j-yqyyList'); $('body').animate({ opacity: 1 }, 100); // $('#j-nav').on('click', 'a', function () { // var index = $(this).index(); // localStorage.navOnIndex = index; // }) // var navOnIndex = localStorage.navOnIndex || 0; // $('#j-nav a').removeClass('on').eq(navOnIndex).addClass('on'); // 澶撮儴鎼滅储 search.on('mouseover', function () { $(this).addClass('search-on').find('.txt').animate({ width: 120 }).focus(); }) search.find('.txt').on('blur', function () { window.searchTimer = setTimeout(function () { search.removeClass('search-on').find('.txt').removeAttr('style'); }, 1000) }) search.find('img').on('click', function () { clearTimeout(window.searchTimer); var keywords = $.trim($(this).siblings('.txt').val()); if (keywords) { location.href = '/search.html?keywords=' + keywords +'&channelid=1&type=sonself'; } else { showToast('璇疯緭鍏ュ叧閿瓧'); } }) // 鍥尯杩愯惀 yqyyList.on('mouseenter', '.item', function () { if($(this).is(':animated')) return; $(this).find('.mask').animate({ opacity: 0 }); $(this).animate({ width: 600 }).find('.btm').show(); var siblings = $(this).siblings(); siblings.find('.mask').animate({ opacity: 0.7 }); siblings.animate({ width: 350 }).find('.btm').hide(); }) // tab鍒囨崲 $('#j-tab').on('click', '.item', function () { var index = $(this).index(); //$(this).addClass('on').siblings().removeClass('on'); //$('#j-tabCont > div').eq(index).show().siblings().hide(); }) $('#j-tab2').on('click', '.item', function () { var index = $(this).attr('data-index'); $(this).addClass('on').siblings().removeClass('on'); $('#j-tabCont2 > div').eq(index).show().siblings().hide(); }) var column_id = $.url.param('column_id') || 1; //$('#j-tab .item').eq(column_id-1).trigger('click'); //鏍规嵁url閫変腑瀵艰埅鏍 let current_uri = window.location.pathname; let uri_param = current_uri.split( '/' ); let length = uri_param.length; let file_url = uri_param[length-1] || 'index.html'; //椤甸潰鐩存帴閫変腑鐨 if( $( '#selectstr' ).lenght >0 && $( '#selectstr' ).val() != '' ){ file_url = $( '#selectstr' ).val(); } $( '#j-nav > .item > a, #j-nav > .item >.sub > a' ).each( function( i, e ){ e = $(e) let checked = false; if( e.attr( 'href' ).indexOf( file_url ) !== -1 ){ checked = true; } console.log( e.data( 'selectstr' ) ); if( e.data( 'selectstr' ) && e.data( 'selectstr' ).indexOf( file_url ) !== -1 ){ checked = true; } if( checked ){ console.log(11); e.addClass( 'on' ).siblings().removeClass( 'on' ); return; }else{ //console.log('bbb'); } } );