SpringBoot侧边栏动态高亮

本文介绍如何在HTML中创建一个可复用的侧边栏片段,通过Thymeleaf模板引擎实现根据URL路径动态高亮菜单。通过`th:replace`指令引入公共片段,参数activeUrl控制侧边栏列表项的激活状态。
摘要由CSDN通过智能技术生成

1.先新建一个html页面保存公共页面,并对公共片段设置片段id,并设置引入片段是进行判断高亮。

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<!--      引入侧边栏-->
<ul class="list-unstyled" th:fragment="sidebar">
    <li class="active" th:class="${activeUrl=='books'?'active':''}"><a href="/books"> <i class="icon-home"></i>图书信息 </a></li>
    <li th:class="${activeUrl=='readers'?'active':''}"><a href="/readers"> <i class="icon-grid"></i>读者信息 </a></li>
    <li th:class="${activeUrl=='borrowInfo'?'active':''}"><a href="/borrow_info"> <i class="fa fa-bar-chart"></i>借阅记录 </a></li>
    <li th:class="${activeUrl=='admin'?'active':''}"><a href="/admin"> <i class="icon-padnote"></i>个人信息 </a></li>
</ul>
</body>
</html>

2.html主页面进行页面引入的时候传入参数

<ul th:replace="commons/sidebar::sidebar(activeUrl='books')">
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值