Files
leanote/app/views/member/footer.html

38 lines
1.0 KiB
HTML
Raw Normal View History

2014-11-09 16:24:19 +08:00
</div>
</section>
</section>
</section>
</section>
</section>
</section>
<script src="/js/jquery-1.9.0.min.js"></script>
<script src="/js/bootstrap.js"></script>
<script src="/js/i18n/msg.{{.locale}}.js"></script>
<script src="/public/admin/js/artDialog/jquery.artDialog.js?skin=default"></script>
<script src="/public/js/common.js"></script>
<script src="/public/member/js/member.js"></script>
<script>
$(function() {
var pathname = location.pathname; // admin/t
var search = location.search; // ?t=xxx, 如果有?page呢
var fullPath = pathname;
if(search.indexOf("?t=") >= 0) {
var fullPath = pathname + search; // /admin/t?t=xxx
}
if(fullPath == "/member/index") {
fullPath = "/member";
2015-11-28 15:17:36 +08:00
} else if (fullPath == '/member/blog/updateTheme') {
fullPath = '/member/blog/theme';
2014-11-09 16:24:19 +08:00
}
2015-11-28 15:17:36 +08:00
2014-11-09 16:24:19 +08:00
$("#nav > li").removeClass("active");
// 自己
var $thisLi = $('#nav a[href="' + fullPath + '"]').parent();
$thisLi.addClass("active");
// 父也active
$thisLi.parent().parent().addClass('active');
});
2015-11-28 15:17:36 +08:00
</script>