<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// banner-end







$(function () {



   
   $('.nav-trint').on('click', function () {
      var nav_link = $(this).find('.nav-link')
      // console.log(nav_link.find('span').length)
      var child_height = nav_link.find('span').length * 31.5
      var lheight = nav_link.height()
      if (lheight === 0) {
         nav_link.animate({
            height: child_height + 'px'
         })
      } else {
         nav_link.animate({
            height: 0 + 'px'
         })
      }
   });
   //  导航栏划过时隐藏的链接列表显示
   $(".nav .width2 span").hover(function () {

      $(this).addClass("on").siblings().removeClass("on");
   }, function () {

      $(".nav .width2 span").removeClass("on");
   });
   //    nav导航栏校友组织
   
   //    校友组织左右菜单栏
   //setIframeHeight("leftBox") || setIframeHeight("rightBox");

   //    

})
// 刷新页面时重新加载路由 得卸载onload函数里面
window.onload = function () {



}

</pre></body></html>