<div class="col-xs-12"> <ul style="list-style: none;padding-left: 0; vertical-align: center"> <li class="publish"> <a data-pjax="true" th:style="${status == 0 ? 'color: #000':''}" href="?status=0">已发布 | </a> </li> <li class="draft"> <a data-pjax="true" th:style="${status == 1 ? 'color: #000':''}" href="?status=1">草稿 | </a> </li> <li class="trash"> <a data-pjax="true" th:style="${status == 2 ? 'color: #000':''}" href="?status=2">回收站</a> </li> </ul> </div>
时间: 2024-01-10 20:04:30 浏览: 56
这段代码看起来像是一个列表,其中有三个列表项,分别是“已发布”,“草稿”和“回收站”,每个列表项都是一个链接,可以通过链接的 href 属性跳转到不同的页面。这个列表可能是用于管理博客或文章的状态的,用户可以通过点击不同的链接来过滤显示不同状态的内容。同时,这个列表项的样式也可以通过 th:style 属性来动态设置,根据不同的状态来设置不同的颜色。
阅读全文