国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > CMS > Z-Blog > 正文

z-blog讓導航突出顯示當前頁鏈接條目

2024-07-09 22:57:47
字體:
來源:轉載
供稿:網友
點評:關鍵字描述:鏈接 當前 顯示 導航 突出 " < .attr this 代碼 z-blog讓導航突出顯示當前頁鏈接條目: 我們的大致思路是這樣的,首先用js給導航部分中當前鏈接項加個區分的ID,如<li id=“current”>首頁</li>,然后再用CSS定義就完成了
 
 
關鍵字描述:鏈接 當前 顯示 導航 突出 " < .attr this 代碼

z-blog讓導航突出顯示當前頁鏈接條目:

我們的大致思路是這樣的,首先用js給導航部分中當前鏈接項加個區分的ID,如<li id=“current”>首頁</li>,然后再用CSS定義就完成了。

  • setp1 :加入js(jQuery代碼),如下

    原先功能簡單的代碼

    <script type="text/javascript">$(document).ready(function(){$("#menu ul>li").each(function() {  //我們假設導航部分的ID為menu,結構是<div id="menu"><ul><li>...    if ($(this).find("a").attr("href")==document.URL){    $(this).attr("id","current")  //給當前頁的<li>加上id="current",如<li id="current">首頁</li>    }});});</script>

    haphic將這一代碼做了完善,此代碼只支持 Z-Blog 模板.

    haphic 完善后的代碼

    <script type="text/javascript">    $("#menu ul>li").each(function() {        if ($(this).find("a").attr("href").toLowerCase() !== str00.toLowerCase()){            if (document.URL.toLowerCase().indexOf($(this).find("a").attr("href").toLowerCase()) !== -1){                $(this).attr("id","current")            }        }else{            if ($(this).find("a").attr("href").toLowerCase() == document.URL.toLowerCase()){                $(this).attr("id","current")            }        }    });</script>
  • setp2 :定義CSS樣式
    #menu ul li#current { background-color:#fff; color:#0B1316;}
     
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 林州市| 孟连| 天水市| 阜阳市| 咸阳市| 镇江市| 北票市| 蕉岭县| 天峻县| 金华市| 阿坝县| 台州市| 峡江县| 新巴尔虎左旗| 靖宇县| 宜黄县| 丹江口市| 樟树市| 临沭县| 鞍山市| 叙永县| 四平市| 弥渡县| 湟源县| 台中市| 鲁山县| 封开县| 石棉县| 临西县| 夏邑县| 翁源县| 绥德县| 临洮县| 呼图壁县| 庆元县| 尼勒克县| 山东省| 焦作市| 芷江| 固原市| 高雄市|