實現點擊a標簽頁面跳轉后顏色高亮


實現點擊a標簽后,頁面跳轉,被點擊的字顏色高亮

$(document).ready(function() {
    $('.zhongxin_left ul li a').each(function() {
        if ($($(this))[0].href == String(window.location)) {
            $('.zhongxin_left ul li').removeClass("blue");
            $(this).parent().addClass('blue');
        };
    });
});

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM