탭을 구현하는 방법은 여러 가지가 있지만 동일하며 아이디어가 매우 중요합니다. 이 글에서는 참고할만한 가치가 있는 jQuery에서 탭을 작성하는 두 가지 방법의 예를 주로 소개합니다. 아래 편집기를 살펴보겠습니다. 모든 사람에게 도움이 되기를 바랍니다.
렌더링:
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <script src="http://code.jquery.com/jquery-1.8.0.min.js"></script> <title>JQuery 源码分析</title> <style> #p1 p{width: 200px;height: 200px;border: 1px solid #FF0000;display: none;} .active{background: red;} *{margin: 0;padding: 0;} .tab:after{content: '';display: block;clear: both;} .tab li{width: 150px;height: 30px;line-height: 30px;text-align: center;cursor: pointer;list-style: none;float: left;margin: 0 10px;background: #ABCDEF;border-radius: 5px;} .tab li.active{background: #000;color:#fff;} .content:after{content: '';display: block;clear: both;} .content li{width: 460px;height: 300px;padding:20px;background: #f7f7f7;display: none;} </style> </head> <body> <p id="p1"> <input class="active" type="button" value="1" /> <input type="button" value="2"/> <input type="button" value="3"/> <p style="display: block;">11111111111</p> <p>22222222222</p> <p>333333333333</p> </p> <ul class="tab"> <li class="active">1</li> <li>2</li> <li>3</li> </ul> <ul class="content"> <li style="display: block;">111111111111</li> <li>222222222222</li> <li>333333333333</li> </ul> <script> $(function(){ //jQuery 方法一 $('#p1').find('input').click(function(){ $('#p1').find('input').attr('class',''); $('#p1').find('p').css('display','none') $(this).attr('class','active'); $('#p1').find('p').eq($(this).index()).css('display','block'); }); //jQuery 方法二 $('.tab').find('li').click(function(){ var index = $(this).index(); $(this).addClass('active').siblings().removeClass('active'); $('.content').find('li').eq(index).show().siblings().hide(); }) }) </script> </body> </html>
관련 권장 사항:
위 내용은 탭 기능을 구현하는 두 가지 jQuery 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!