"use strict"; var mainScroll; if (!isMobile) { mainScroll = new IScroll($(".main .iscroll").get(0), { scrollbars: true, bounce: true, scrollX: false, scrollY: true, mouseWheelSpeed: 20, mouseWheel: true, passOut: true }); } // eventPassthrough: true, // preventDefault: false, $(".news-card .tab__item, .second-nav li").on("click", function () { $(this).addClass("active").siblings().removeClass("active"); $(".news-card .td").eq(1).find("> div").eq($(this).index()).show().siblings().hide(); if ($(this).index() === 1) { mainScroll && mainScroll.refresh(); } }); if (location.hash === "#1") { $(".news-card .tab__item").eq(1).trigger("click"); $(".second-nav li").eq(1).trigger("click"); }