이 기사의 예에서는 jquery가 미화 없이 간단한 TAB 메뉴 효과를 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
미화되지 않은 것처럼 보이는 간단한 TAB 탭입니다. 관심이 있는 경우 직접 미화할 수도 있습니다. 코드도 간결하고 학습에 좋은 참고가 됩니다. jQuery 플러그인을 사용했습니다.
런닝 효과 스크린샷은 다음과 같습니다.
온라인 데모 주소는 다음과 같습니다.
http://demo.jb51.net/js/2015/jquery-show-tab-plug-style-codes/
구체적인 코드는 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>未经美化的简洁TAB</title> <style> body {font:normal 12px/20px simsun; margin:0 auto; padding:0;} * {margin: 0px; padding: 0px;} h4{font-size:14px;} h5{font-size:12px;} img {border:none;} ul,li{list-style-type:none;} a{text-decoration:none;} a:link{text-decoration:none;} a:hover{text-decoration:underline; color:#ffae00;} #tab{width:240px; margin:0 auto; text-align:center;} .menu{height:35px; line-height:32px; padding-top:1px;} .menu a{display:inline-block; height:35px; line-height:35px; width:116px; text-align:center; font-size:20px; color:#999999; font-weight:bold;} .menu a:hover, .menu a.on{color:#d33b55; text-decoration:none;} .cnt{border:1px solid #999999; width:240px; height:100px;} </style> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".menu a").each(function(i){ $(this).click(function(){ $(".menu a").removeClass("on").eq(i).addClass("on"); $(".cnt").hide().eq(i).show(); return false; //防止a跳转; }) }) }); </script> </head> <body> <div id="tab"> <div class="menu"> <a href="#" class="on">ASP源码</a> <a href="#">Java源码</a> </div> <div class="cnt"> <ul> <li>ASP源码1</li> <li>ASP源码2</li> <li>ASP源码3</li> </ul> </div> <div class="cnt" style="display:none;"> <ul> <li>Java源码1</li> <li>Java源码2</li> <li>Java源码3</li> </ul> </div> </div> </body> </html>
이 기사가 모든 사람의 jquery 프로그래밍 설계에 도움이 되기를 바랍니다.