本文实例讲述了js实现显示当前状态的导航效果代码。分享给大家供大家参考。具体如下:
这里演示显示当前状态的导航,鼠标点击左侧的导航菜单,右侧的内容就会变换,实际上是一个竖向的TAB选项卡,作为菜单来用的话,它正好可以显示当前的菜单位置,比较经典。
运行效果截图如下:
在线演示地址如下:
http://demo.jb51.net/js/2015/js-show-nav-style-status-codes/
具体代码如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>显示当前状态的导航</title> <style type="text/css"> body { font-family:verdana; } #content { float:left; width:400px; border:1px solid #ccc; margin-left:20px; padding:2px 10px 10px 10px; } ul { margin:0; padding:0; list-style: none; width:200px; float:left; } ul li { margin:0 0 1px 0; padding:0; } ul li a { display:block; padding:8px; text-decoration:none; background: #eee; color: #039; } ul li a:hover { background: #ffc; } ul li a.selected { background: #c63; color:#fff; } #content div { display:none; } #content div.on { display:block; } </style> <script type="text/javascript"> function applySelectedTo(link) { var ul = document.getElementsByTagName("ul")[0]; // get the first ul tag on the page var allLinks = ul.getElementsByTagName("a"); // get all the links within that ul for (var i=0; i<allLinks.length; i++) { // iterate through all those links allLinks[i].className = ""; // and assign their class names to nothing } link.className = "selected"; // finally, assign class="selected" to our chosen link var allDivs = document.getElementsByTagName("div"); for (var k=0; k<allDivs.length; k++) { allDivs[k].className = ""; } var lyricId = link.getAttribute("href").split("#")[1]; lyricId = document.getElementById(lyricId); lyricId.className = "on"; } </script> </head> <body> <h1 id="A-list-of-links-styled-selected-state-onclick-return-false-and-does-something">A list of links (styled, selected state, onclick, return false, and does something)</h1> <ul> <li><a onclick="applySelectedTo(this);return false;" href="#heartbreakHotel">世界七星级宾馆</a></li> <li><a onclick="applySelectedTo(this);return false;" href="#blueSuedeShoes">蓝色梦想</a></li> <li><a onclick="applySelectedTo(this);return false;" href="#houndDog" class="selected">千年等待</a></li> <li><a onclick="applySelectedTo(this);return false;" href="#dontBeCruel">不要忘记我</a></li> <li><a onclick="applySelectedTo(this);return false;" href="#teddyBear">青岛啤酒</a></li> </ul> <div id="content"> <div id="heartbreakHotel"> <h2 id="Heartbreak-Hotel">Heartbreak Hotel</h2> <p>Well, since my baby left me,<br /> I found a new place to dwell.<br /> Its down at the end of lonely street<br /> At heartbreak hotel.</p> <p>You make me so lonely baby,<br /> I get so lonely,<br /> I get so lonely I could die.</p> <p>And although its always crowded,<br /> You still can find some room.<br /> Where broken hearted lovers<br /> Do cry away their gloom.</p> <p>You make me so lonely baby,<br /> I get so lonely,<br /> I get so lonely I could die.</p> <p>Well, the bell hops tears keep flowin,<br /> And the desk clerks dressed in black.<br /> Well they been so long on lonely street<br /> They aint ever gonna look back.</p> <p>You make me so lonely baby,<br /> I get so lonely,<br /> I get so lonely I could die.</p> <p>Hey now, if your baby leaves you,<br /> And you got a tale to tell.<br /> Just take a walk down lonely street<br /> To heartbreak hotel.</p> </div> <div id="blueSuedeShoes"> <h2 id="Blue-Suede-Shoes">Blue Suede Shoes</h2> <p>Well, its one for the money,<br /> Two for the show,<br /> Three to get ready,<br /> Now go, cat, go.</p> <p>But dont you step on my blue suede shoes.<br /> You can do anything but lay off of my blue suede shoes.</p> <p>Well, you can knock me down,<br /> Step in my face,<br /> Slander my name<br /> All over the place.</p> <p>Do anything that you want to do, but uh-uh,<br /> Honey, lay off of my shoes<br /> Dont you step on my blue suede shoes.<br /> You can do anything but lay off of my blue suede shoes.</p> <p>You can burn my house,<br /> Steal my car,<br /> Drink my liquor<br /> From an old fruitjar.</p> <p>Do anything that you want to do, but uh-uh,<br /> Honey, lay off of my shoes<br /> Dont you step on my blue suede shoes.<br /> You can do anything but lay off of my blue suede shoes.</p> </div> <div class="on" id="houndDog"> <h2 id="Hound-Dog">Hound Dog</h2> <p>You aint nothin but a hound dog<br /> Cryin all the time.<br /> You aint nothin but a hound dog<br /> Cryin all the time.<br /> Well, you aint never caught a rabbit<br /> And you aint no friend of mine.</p> <p>When they said you was high classed,<br /> Well, that was just a lie.<br /> When they said you was high classed,<br /> Well, that was just a lie.<br /> You aint never caught a rabbit<br /> And you aint no friend of mine.</p> </div> <div id="dontBeCruel"> <h2 id="Don-t-Be-Cruel">Don't Be Cruel</h2> <p>You know I can be found,<br /> Sitting home all alone,<br /> If you cant come around,<br /> At least please telephone.<br /> Dont be cruel to a heart thats true.</p> <p>Baby, if I made you mad<br /> For something I might have said,<br /> Please, lets forget the past,<br /> The future looks bright ahead,<br /> Dont be cruel to a heart thats true.<br /> I dont want no other love,<br /> Baby its just you Im thinking of.</p> <p>Dont stop thinking of me,<br /> Dont make me feel this way,<br /> Come on over here and love me,<br /> You know what I want you to say.<br /> Dont be cruel to a heart thats true.<br /> Why should we be apart?<br /> I really love you baby, cross my heart.</p> <p>Lets walk up to the preacher<br /> And let us say I do,<br /> Then youll know youll have me,<br /> And Ill know that Ill have you,<br /> Dont be cruel to a heart thats true.<br /> I dont want no other love,<br /> Baby its just you Im thinking of.</p> <p>Dont be cruel to a heart thats true.<br /> Dont be cruel to a heart thats true.<br /> I dont want no other love,<br /> Baby its just you Im thinking of.</p> </div> <div id="teddyBear"> <h2 id="Teddy-Bear">Teddy Bear</h2> <p>Baby let me be,<br /> Your lovin teddy bear<br /> Put a chain around my neck,<br /> And lead me anywhere<br /> Oh let me be<br /> Your teddy bear.</p> <p>I dont wanna be a tiger<br /> Cause tigers play too rough<br /> I dont wanna be a lion<br /> cause lions aint the kind<br /> You love enough.<br /> Just wanna be, your teddy bear<br /> Put a chain around my neck<br /> And lead me anywhere<br /> Oh let me be<br /> Your teddy bear.</p> <p>Baby let me be, around you every night<br /> Run your fingers through my hair,<br /> And cuddle me real tight.</p> </div> </div> </body> </html>
希望本文所述对大家的javascript程序设计有所帮助。

javaandjavascriptaredistinctlanguages:javaisusedforenterpriseandmobileapps,while javascriptifforInteractiveWebpages.1)JavaisComcompoppored,statieldinglationallyTypted,statilly tater astrunsonjvm.2)

JavaScript核心数据类型在浏览器和Node.js中一致,但处理方式和额外类型有所不同。1)全局对象在浏览器中为window,在Node.js中为global。2)Node.js独有Buffer对象,用于处理二进制数据。3)性能和时间处理在两者间也有差异,需根据环境调整代码。

JavaScriptusestwotypesofcomments:single-line(//)andmulti-line(//).1)Use//forquicknotesorsingle-lineexplanations.2)Use//forlongerexplanationsorcommentingoutblocksofcode.Commentsshouldexplainthe'why',notthe'what',andbeplacedabovetherelevantcodeforclari

Python和JavaScript的主要区别在于类型系统和应用场景。1.Python使用动态类型,适合科学计算和数据分析。2.JavaScript采用弱类型,广泛用于前端和全栈开发。两者在异步编程和性能优化上各有优势,选择时应根据项目需求决定。

选择Python还是JavaScript取决于项目类型:1)数据科学和自动化任务选择Python;2)前端和全栈开发选择JavaScript。Python因其在数据处理和自动化方面的强大库而备受青睐,而JavaScript则因其在网页交互和全栈开发中的优势而不可或缺。

Python和JavaScript各有优势,选择取决于项目需求和个人偏好。1.Python易学,语法简洁,适用于数据科学和后端开发,但执行速度较慢。2.JavaScript在前端开发中无处不在,异步编程能力强,Node.js使其适用于全栈开发,但语法可能复杂且易出错。

javascriptisnotbuiltoncorc; saninterpretedlanguagethatrunsonenginesoftenwritteninc.1)javascriptwasdesignedAsalightweight,解释edganguageforwebbrowsers.2)Enginesevolvedfromsimpleterterterpretpreterterterpretertestojitcompilerers,典型地提示。

JavaScript可用于前端和后端开发。前端通过DOM操作增强用户体验,后端通过Node.js处理服务器任务。1.前端示例:改变网页文本内容。2.后端示例:创建Node.js服务器。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

Video Face Swap
使用我们完全免费的人工智能换脸工具轻松在任何视频中换脸!

热门文章

热工具

SublimeText3 Linux新版
SublimeText3 Linux最新版

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

记事本++7.3.1
好用且免费的代码编辑器

PhpStorm Mac 版本
最新(2018.2.1 )专业的PHP集成开发工具

安全考试浏览器
Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。