Javascript js頁面跳轉 公共footer設定選中active
阿新 • • 發佈:2018-12-10
頁面跳轉 設定active
這裡有一個古老的方法,也是備受爭議
思否----可供參考
本文使用cookie實現active的選中狀態 注意一點,就是存cookie的方法和取cookie的方法一定要分開
$('#footer li').each(function () {
$(this).removeClass('active')
var Index = $(this).index();
var now = Cookies.get('Index')
if (!now && Index == 0) {
$(this).addClass ('active')
}
else if (Index == now) {
$(this).addClass('active')
}
else {
return true
}
})
$('#footer li').click(function () {
var Index = $(this).index();
Cookies.set('Index', Index)
})
END