<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">$(function () {
  $('.header_menu li a').each(function () {
    var url = window.location.pathname;
    var href = $(this).attr('href');
    if(url.includes('yingchao')){
        if (href.includes('yingchao')) {
            $(this).parent().addClass('active').siblings().removeClass('active')
        } 
    }else{
        if (href != '/' &amp;&amp; url.includes(href)) {
            $(this).parent().addClass('active').siblings().removeClass('active')
        } 
    }
  })
  $('.sub_nav li a').each(function () {
    var url = window.location.pathname;
    var href = $(this).attr('href');
    if (url == href) {
      $(this).parent().addClass('active').siblings().removeClass('active')
    }
  })

  $('.topic_box_tag_title li').on('click', function () {
    $(this).addClass('active').siblings().removeClass('active');
    $(this).parent().parent().parent().find('.topic_box_list li').hide();
    $(this).parent().parent().parent().find('li[data-tag="' + $(this).data('tag') + '"]').show()
  })

  $('.tocr_block_taggle li').on('click', function () {
    $(this).addClass('active').siblings().removeClass('active');
    $('.ranking_taggle table').hide();
    $('.ranking_taggle table[data-index="' + $(this).data('index') + '"]').show();
  })


})

function openurl(url) {
  window.open(url)
}
$(function(){$("img.lazy").lazyload({effect:"fadeIn",failurelimit:10000});})</pre></body></html>