$(document).ready(function(){ //鎼滅储 $('.search-btn').mouseenter(function(){ $(".search-input").slideDown(300); $(".topbox-submenu").slideUp(300); }); $('.topbox-search').mouseleave(function(){ $(".search-input").slideUp(300); }); //鏂伴椈 $(".newsbox-right-header span").mouseenter(function () { let nowclick = $(this).index(); $(".newsbox-right-content .part").hide().eq(nowclick).fadeIn(500); $(".newsbox-right-header span").removeClass("newsselect").eq(nowclick).addClass("newsselect"); }) $(".gotop").click(function() { $('body,html').animate({ scrollTop: 0 }, 500); return false; }); $(document).on('mouseenter','.topbox-menu li>a',function () { $('.topbox-menu').find('dl').hide(); var obj=$(this).parent('li').find('dl'); obj.slideDown(300); obj.parent('li').find('dl').on('mouseleave',function(){ obj.slideUp(300); }); obj.parent('li').find('dl').on('mouseenter',function(){ obj.show(); }); $(this).on('mouseleave',function(){ obj.hide(); }); }); $.ajax('/api/common/getShares',{ success:function(res){ var data = res.data; shareData = data; var html = ''; if (data.ZH_shares){ if(data.ZH_shares.increPer<0){ html = ""+data.ZH_shares.nowPri+" 鈫掽/span>  "+data.ZH_shares.increase+"锛?+data.ZH_shares.increPer+"%锛堻/span>"; }else{ html = ""+data.ZH_shares.nowPri+" 鈫慄/span>  +"+data.ZH_shares.increase+"锛?"+data.ZH_shares.increPer+"%锛堻/span>"; } } else{ html="鏆傛椂鏃犳硶鑾峰彇"; } $('.newZHGJ').html(html); var html = ''; if (data.LM_shares){ if(data.LM_shares.increPer<0){ html = ""+data.LM_shares.nowPri+" 鈫掽/span>  "+data.LM_shares.increase+"锛?+data.LM_shares.increPer+"%锛堻/span>"; }else{ html = ""+data.LM_shares.nowPri+" 鈫慄/span>  +"+data.LM_shares.increase+"锛?"+data.LM_shares.increPer+"%锛堻/span>"; } } else{ html="鏆傛椂鏃犳硶鑾峰彇"; } $('.newLMGJ').html(html); /* var html = template('tpl', {data: shareData}) var container = document.querySelector('#sharesData'); container.innerHTML = html;*/ } }) $(document).on('mouseenter','.topbox-search,.gotop,.swiper-button-next,.swiper-button-prev',function () { var new_img = $(this).data('img'); if (typeof new_img!="undefined") { var old_img = $(this).find('img').attr('src'); $(this).find('img').attr('src',new_img) $(this).data('img',old_img); } }) $(document).on('mouseleave','.topbox-search,.gotop,.swiper-button-next,.swiper-button-prev',function () { var new_img = $(this).data('img'); if (typeof new_img!="undefined") { var old_img = $(this).find('img').attr('src'); $(this).find('img').attr('src',new_img) $(this).data('img',old_img); } }); var win=$(window); var sc=$(document); win.scroll(function() { $(".topbox-menu").find('dl').slideUp(300); //console.log('kkkk') if (sc.scrollTop() >= 100) { $('.gotop').show(); } else { $('.gotop').hide(); } }); });