$(function () { //顶部轮播 // var bannerswiper = new swiper('#bannerswiper', { // loop: true, // autoplay: 3000, // speed: 500, // calculateheight: true, // pagination: '#bannerswiper-pagination', // paginationclickable: true, // oninit: function(bannerswiper) { // //swiper.swipeprev(); // $('#bannerswiper-right').click(function() { // bannerswiper.swipenext(); // }); // $('#bannerswiper-left').click(function() { // bannerswiper.swipeprev(); // }) // } // }); if(document.getelementbyid('bannerswiper')){ var bannerswiper = new swiper('#bannerswiper', { calculateheight: true, paginationclickable: true, oninit: function (bannerswiper) { //swiper.swipeprev(); $('#bannerswiper-right').click(function () { bannerswiper.swipenext(); }); $('#bannerswiper-left').click(function () { bannerswiper.swipeprev(); }) } }); } $('.footer').html('
'+ '
'+ ''+ '爱施德官方微信'+ '
'+ '
'+ '
'+ '深圳总部'+ '
'+ '地址:深圳市南山区科发路83号南山金融大厦18层
'+ '
'+ '电话:0755-21519888
'+ '
'+ '传真:0755-83890101
'+ '
'+ '
'+ '北京总部'+ '
'+ '地址:北京市朝阳区百子湾西里302号楼'+ '
'+ '
'+ '电话:010-87957222
'+ '
'+ '传真:010-57330642
'+ '
'+ '
'+ ''+ '
'+ ''+ '

'+ '粤公网安备 44030402002542号

'+ '
'+ '
'+ '
') //轮播翻页箭头交互 $("#bannerswiper").hover(function () { $(this).find(".swiper-button-prev").animate({ left: '60px' }, 200); $(this).find(".swiper-button-next").animate({ right: '60px' }, 200); }, function () { $(this).find(".swiper-button-prev").animate({ left: '-130px' }, 200); $(this).find(".swiper-button-next").animate({ right: '-130px' }, 200); }) //标签切换 $(".tab >*").hover(function () { var i = $(this).index(); $(this).addclass('act').siblings().removeclass('act'); $(this).parent().next(".tabcontent").children("div").eq(i).addclass('act').siblings().removeclass('act'); return false }); var scrollend = true; window.onscroll = function () { if (scrollend) { scrollend = false; var sy = window.scrolly || window.pageyoffset || document.documentelement.scrolltop; var hasgotopdiv = !!document.getelementbyid('gotop'); if (hasgotopdiv) { if (sy > 720) { document.getelementbyid('gotop').style.display = 'block'; } else { document.getelementbyid('gotop').style.display = 'none'; } $("#gotop").on('click', function (event) { window.scrollto(0, 0); document.getelementbyid('gotop').style.display = 'none'; }); } else { var gtdiv = document.createelement('div'); gtdiv.id = 'gotop'; document.body.appendchild(gtdiv); } settimeout(function () { scrollend = true; }, 100) } } getnav(); }); function urlparam(param) { var val = decodeuricomponent((new regexp('[?|&]' + param + '=' + '([^&;]+?)(&|#|;|$)').exec(location.search) || [, ""])[1].replace(/\+/g, '%20')) || null; return val; } function getnav() { $('.topsrch').html('') //$.getjson('//www.aisidi.com/html/ch/js/nav.js?ver=20211217a', function (result) { $.getjson('/html/ch/js/nav.js?ver=20220402a', function (result) { var hedernavhtml = ""; //var leftnavhtml = ""; if (result.length > 0) { for (var i = 0; i < result.length; i++) { if(result[i].outsidelink){ hedernavhtml += ""+result[i].text+" " }else{ hedernavhtml += '' + result[i].text + ' '; } //leftnavhtml += '

"'+result[i].text+'" "'+result[i].describe+'"

'; if (result[i].child.length > 0) { hedernavhtml += ''; } hedernavhtml += "
" } //hedernavhtml += "爱施德业务平台 " } $('.topmenu').html(hedernavhtml); //$('.mainbox').html(''); //$('.mainbox').html(leftnavhtml); // 选中导航 var path = location.pathname; var navdom = $('.topmenu li'); for (var k = 0; k < navdom.length; k++) { var dataid = navdom.eq(k).attr('data-id'); if (dataid == path) { // if (navdom.eq(k).parent().parent('span').find('li').length > 0) { // navdom.eq(k).parent().parent('span').siblings().removeclass('act'); // navdom.eq(k).parent().parent('span').addclass('act'); // } else { // navdom.eq(k).parent().parent('span').siblings().removeclass('act'); // navdom.eq(k).parent().parent('span').addclass('act'); // } navdom.eq(k).parent().parent('span').siblings().removeclass('act'); navdom.eq(k).parent().parent('span').addclass('act'); } } if (path == '/ch/default' || path == '/') { $('.topmenu span').removeclass('act'); $('.topmenu span').eq(0).addclass('act'); } if (path == '/ch/news' || path == '/ch/article') { $('.topmenu span').removeclass('act'); $('.topmenu span').eq(3).addclass('act'); } if (path == '/ch/industrial_overview') { $('.topmenu span').removeclass('act'); $('.topmenu span').eq(2).addclass('act'); } if (path == '/ch/investor_relations_manager' || path == '/ch/rule_regulations' || path == '/ch/investor_relations_rule_system') { $('.topmenu span').removeclass('act'); $('.topmenu span').eq(4).addclass('act'); } if (path == '/ch/jobs' || path == '/ch/joinus' || path == '/ch/jobdetail'|| path == '/ch/personnel_training_asdcollege') { $('.topmenu span').removeclass('act'); $('.topmenu span').eq(5).addclass('act'); } //顶部导航展示 var curtopnavindex = $('.act', ".topmenu").index(); $('span', ".topmenu").hover(function () { $('span', ".topmenu").removeclass('act') $(this).addclass('hover') }, function () { $('span', ".topmenu").removeclass('act hover') if (curtopnavindex >= 0) { $('span', ".topmenu").eq(curtopnavindex).addclass('act') } }); }) }