이 기사의 예에서는 jquery를 사용하여 매우 간결한 TAB 탭 효과 코드를 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
초간단한 TAB 탭입니다. 개인적으로 좀 너무 단순하고 익숙하지 않은 것 같아서 예쁘게 꾸미는 게 좋을 것 같아요. 실제로 클릭한 TAB에 배경색을 추가하여 구분하는 것이 더 좋습니다.
런닝 효과의 스크린샷을 살펴보겠습니다.
온라인 데모 주소는 다음과 같습니다.
http://demo.jb51.net/js/2015/jquery-easy-tab-cha-menu-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;} .menu li{width:60px; height:30px; text-align:center; line-height:30px; float:left; cursor:pointer;} .menu li:hover, .menu li.on{color:#f00;} .cont{width:180px; height:100px; border:1px solid #666666; clear:both;} </style> <script type="text/javascript" src="jquery-1.6.2.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".menu li").click(function(){ var Num=$(this).index("li"); $(".menu li").removeClass("on").eq(Num).addClass("on"); $(".cont").hide().eq(Num).show(); }); }); </script> </head> <body> <div class="tab"> <ul class="menu"> <li class="on">北欧之旅</li> <li>音乐维也纳</li> <li>天堂瑞士</li> </ul> <div class="cont">北欧之旅</div> <div class="cont" style="display:none;">音乐维也纳</div> <div class="cont" style="display:none;">天堂瑞士</div> </div> </body> </html>
이 기사가 모든 사람의 jquery 프로그래밍 설계에 도움이 되기를 바랍니다.