开发技术学习 »
编程开发 » thinkphp导航高亮实现方法,tp内的eq标签,thinkphp代码优化
thinkphp导航高亮实现方法,tp内的eq标签,thinkphp代码优化
网站导航在当前页的时候总要显示高亮才能让人知道当前位置。thinkphp代码优化
thinkphp导航高亮实现方法,tp内的eq标签
假设代码是
[php]
<volist name="nav" id="a">
<a class="nav" href="{a.link}">a.text</a>
</volsit>
[/php]
向我们实现这种导航的高亮 html通常是写eq去判断,加个类
那样导致代码很长不易读,其实可以用jQuery实现
[php]
<script type="text/javascript">
$(function(){
var current_url = '/article-id-415.html';
$('.nav[href="'+current_url+'"]').addClass('user_current');
})
</script>
[/php]
如果是子页面想高亮通过接受参数的方式 /code/edit/id/61.html 可以改为 cate={$_GET.cate}
下面的href= 改为*=就可以用href包含参数的方式判断高亮了