最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
當前位置: 首頁 - 科技 - 知識百科 - 正文

jQuery實現(xiàn)的導航條點擊后高亮顯示功能示例

來源:懂視網(wǎng) 責編:小采 時間:2020-11-27 22:00:23
文檔

jQuery實現(xiàn)的導航條點擊后高亮顯示功能示例

jQuery實現(xiàn)的導航條點擊后高亮顯示功能示例:本文實例講述了jQuery實現(xiàn)的導航條點擊后高亮顯示功能。分享給大家供大家參考,具體如下: <!DOCTYPE html> <html lang=en> <head> <meta charset=UTF-8> <title>www.gxlcms.co
推薦度:
導讀jQuery實現(xiàn)的導航條點擊后高亮顯示功能示例:本文實例講述了jQuery實現(xiàn)的導航條點擊后高亮顯示功能。分享給大家供大家參考,具體如下: <!DOCTYPE html> <html lang=en> <head> <meta charset=UTF-8> <title>www.gxlcms.co

本文實例講述了jQuery實現(xiàn)的導航條點擊后高亮顯示功能。分享給大家供大家參考,具體如下:

<!DOCTYPE html>
<html lang="en">
<head>
 <meta charset="UTF-8">
 <title>www.gxlcms.com jQuery導航條點擊后高亮顯示</title>
 <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
 <style>
 #nav li {float: left; width: 80px; text-align: center; list-style-type: none;}
 .nav-active {background: #ff47a5;}
 .nav-active a {color: #fff;text- decoration:none}
 </style>
</head>
<body>
<ul id="nav">
 <li class="nav-active"><a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >首頁</a></li>
 <li><a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Page1</a></li>
 <li><a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Page2</a></li>
 <li><a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Page3</a></li>
 <li><a href="javascript:;" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >Page4</a></li>
</ul>
 <script>
 $('#nav').find('li').click(function() {
 // 為當前點擊的導航加上高亮,其余的移除高亮
 $(this).addClass('nav-active').siblings('li').removeClass('nav-active');
 });
 </script>
</body>
</html>

使用在線HTML/CSS/JavaScript代碼運行工具:http://tools.jb51.net/code/HtmlJsRun測試上述代碼,運行效果如下:

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery切換特效與技巧總結(jié)》、《jQuery擴展技巧總結(jié)》、《jQuery常用插件及用法總結(jié)》、《jQuery拖拽特效與技巧總結(jié)》、《jQuery常見經(jīng)典特效匯總》、《jQuery動畫與特效用法總結(jié)》及《jquery選擇器用法總結(jié)》

希望本文所述對大家jQuery程序設(shè)計有所幫助。

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

jQuery實現(xiàn)的導航條點擊后高亮顯示功能示例

jQuery實現(xiàn)的導航條點擊后高亮顯示功能示例:本文實例講述了jQuery實現(xiàn)的導航條點擊后高亮顯示功能。分享給大家供大家參考,具體如下: <!DOCTYPE html> <html lang=en> <head> <meta charset=UTF-8> <title>www.gxlcms.co
推薦度:
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top