点击页面跳转 同时被点击的菜单出现高亮

  

 <script>
     

$(function(){
$(".order_left").find(".menuclick").click(function(){
$(".menuclick").removeClass("selected")
$(this).addClass("selected")
$(this).next().toggle("fast")

})


})
var c = "";
window.a = "";
$(document).ready(function () {
a = $(".ord_b a");
c = window.location.pathname.split('/')[4];//本地路径
for (var i = 0; i < a.length; i++) {
var b = a[i].getAttribute('href');
if (c == b) {
$(a[i]).addClass("active");
$(a[i]).parent().parent().toggle();//展开


}
}
})

</script> 

你可能感兴趣的:(点击页面跳转 同时被点击的菜单出现高亮)