$(document).ready(function() { // 获取当前页面URL var currentPageUrl = window.location.href; // 遍历所有的标签并匹配页面URL进行高亮 $("li").each(function() { var href = $(this).attr("href"); if (href === currentPageUrl) { // 添加高亮样式 $(this).css("background-color", "yellow"); } }); });