let href = location.pathname; /*获取面包屑*/ // if (!href) return; $(".e_loop-3 .p_list .e_text-4 a").addClass('sort_href'); $(".e_loop-3 .p_list .e_text-4 .sort_href").each(function (i, e) { let aa = $(e).attr("href"); /*获取a标签的href属性*/ console.log('true'); if (aa == href) { // 自身样式 $(e).parents('.p_loopitem').addClass('select_click') .end().siblings('.p_loopitem').removeClass('select_click'); /*添加当前选中高亮样式,移除其他之前选中的的高亮样式*/ } })