本文实例讲述了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程序设计有所帮助。

Python和JavaScript在社区、库和资源方面的对比各有优劣。1)Python社区友好,适合初学者,但前端开发资源不如JavaScript丰富。2)Python在数据科学和机器学习库方面强大,JavaScript则在前端开发库和框架上更胜一筹。3)两者的学习资源都丰富,但Python适合从官方文档开始,JavaScript则以MDNWebDocs为佳。选择应基于项目需求和个人兴趣。

从C/C 转向JavaScript需要适应动态类型、垃圾回收和异步编程等特点。1)C/C 是静态类型语言,需手动管理内存,而JavaScript是动态类型,垃圾回收自动处理。2)C/C 需编译成机器码,JavaScript则为解释型语言。3)JavaScript引入闭包、原型链和Promise等概念,增强了灵活性和异步编程能力。

不同JavaScript引擎在解析和执行JavaScript代码时,效果会有所不同,因为每个引擎的实现原理和优化策略各有差异。1.词法分析:将源码转换为词法单元。2.语法分析:生成抽象语法树。3.优化和编译:通过JIT编译器生成机器码。4.执行:运行机器码。V8引擎通过即时编译和隐藏类优化,SpiderMonkey使用类型推断系统,导致在相同代码上的性能表现不同。

JavaScript在现实世界中的应用包括服务器端编程、移动应用开发和物联网控制:1.通过Node.js实现服务器端编程,适用于高并发请求处理。2.通过ReactNative进行移动应用开发,支持跨平台部署。3.通过Johnny-Five库用于物联网设备控制,适用于硬件交互。

我使用您的日常技术工具构建了功能性的多租户SaaS应用程序(一个Edtech应用程序),您可以做同样的事情。 首先,什么是多租户SaaS应用程序? 多租户SaaS应用程序可让您从唱歌中为多个客户提供服务

本文展示了与许可证确保的后端的前端集成,并使用Next.js构建功能性Edtech SaaS应用程序。 前端获取用户权限以控制UI的可见性并确保API要求遵守角色库

JavaScript是现代Web开发的核心语言,因其多样性和灵活性而广泛应用。1)前端开发:通过DOM操作和现代框架(如React、Vue.js、Angular)构建动态网页和单页面应用。2)服务器端开发:Node.js利用非阻塞I/O模型处理高并发和实时应用。3)移动和桌面应用开发:通过ReactNative和Electron实现跨平台开发,提高开发效率。

JavaScript的最新趋势包括TypeScript的崛起、现代框架和库的流行以及WebAssembly的应用。未来前景涵盖更强大的类型系统、服务器端JavaScript的发展、人工智能和机器学习的扩展以及物联网和边缘计算的潜力。


热AI工具

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

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

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

SublimeText3汉化版
中文版,非常好用

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。

Dreamweaver Mac版
视觉化网页开发工具

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

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。