30 lines
839 B
HTML
30 lines
839 B
HTML
</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="/public/admin/js/artDialog/jquery.artDialog.js?skin=default"></script>
|
|
<script src="/public/js/common.js"></script>
|
|
<script src="/public/admin/js/admin.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
|
|
}
|
|
|
|
$("#nav > li").removeClass("active");
|
|
// 自己
|
|
var $thisLi = $('#nav a[href^="' + fullPath + '"]').parent();
|
|
$thisLi.addClass("active");
|
|
// 父也active
|
|
$thisLi.parent().parent().addClass('active');
|
|
});
|
|
</script> |