在导航中突出显示当前页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在导航中突出显示当前页相关的知识,希望对你有一定的参考价值。
<?php //page titles / page number 'Page Number 1' => '01', 'Page Number 2' => '02', 'Page Number 3' => '03' ); //get current page //write pages foreach($titles as $v => $k) { $h = ($k == $page) ? " style='background:yellow;'" : ''; echo "<a href='?page=$k'$h>$v</a><br /> "; } // If page is '?page=02', will print... // // <a href='?page=01'>Page Number 1</a> // <a href='?page=02' style='background:yellow;'>Page Number 2</a> // <a href='?page=03'>Page Number 3</a> ?>
以上是关于在导航中突出显示当前页的主要内容,如果未能解决你的问题,请参考以下文章