$(function(){ //澶撮儴瀵艰埅 var hash = window.location.hash; $(".header_ul li ").each(function(index, el) { var href = $(el).find("a").attr('href'); if (href == hash) { $(".header_ul li").removeClass("index-bor-b"); $(el).addClass('index-bor-b'); } }); $(".header_ul li a").on("click",function(){ $(".header_ul li").removeClass("index-bor-b"); $(this).parent().addClass("index-bor-b"); }) })