$(function () { var urlName = window.location.pathname; $('.e_container-1 .p_list .p_loopitem .s_title a').each(function () { var urlHref = $(this).attr('href'); if (urlName.indexOf(urlHref) >= 0) { $(this).addClass('on'); $(this).parent().parent("div").addClass('active'); } }); if ($(window).width() < 769) { if ($('.e_container-1 .p_list .p_loopitem.active').length > 0) { var left = $('.e_container-1 .p_list .p_loopitem.active').offset().left; console.log(left) console.log($(window).width() / 2) if (left > ($(window).width() / 2)) { $(".e_container-1 .p_list").scrollLeft(left / 2); } } } });