지운아빠

질문해도 되나요?

 jQuery 관련이라 질문을 올려보는데 혹여 성격에 안 맞는다면 바로 삭제하겠습니다. 죄송합니다.
아샬님이 올리신 탭메뉴 소스가 있었네요.
 
<div id="Wrapper">
 <div id="Navigation">
  <ul id="primary">
   <li><a href="#" class="active">TAB 1</a></li>
   <li><a href="#">TAB 2</a></li>
   <li><a href="#">TAB 3</a></li>
  </ul>
 </div>
 <div id="Container">
  <div id="Content">
   <div id="TAB1" style="">  
     <h1>Tab One</h1>
     <p>
     This is tab one. You can put specific information for tab one here.
    </p>
   </div>
   <div id="TAB2" style="display: none;">  
     <h1>Tab Two</h1>
    <p>
     This is tab two. You can put specific information for tab one here.
    </p>
   </div>
   <div id="TAB3" style="display: none;">  
    <h1>Tab Three</h1>
    <p>
     This is tab three. You can put specific information for tab one here.
    </p>
   </div>
  </div>
 </div>
</div>
 
<script>
 $("#primary a").click(function(){
   $("#primary a").removeClass("active");
   $(this).addClass("active");
   $("#Content div").css("display", "none");
   var tabname = $(this).text();
   tabname = tabname.replace(' ','');
   $("#"+tabname).css("display","block");
  });
</script>
 
 
빨간색으로 표시한 부분을 .text 로 받아오면 탭메뉴 부분이 어쩔 수 없이 TAB1, TAB2 가 되는 구조인데요.
탭메뉴를 가, 나, 다 처럼 하고 싶을 때는 어떻게 해야 될까요. 그냥 div id 값에 한글을 넣어도 될까요?
|

댓글 21개

앵커에 title을 넣은 후 title의 값을 긁어오면 되지않나요?
<ul id="primary">
<li><a href="#" title="TAB1" class="active">가</a></li>
<li><a href="#" title="TAB2">나</a></li>
<li><a href="#" title="TAB3">다</a></li>
</ul>
로 수정하고

var tabname = $(this).text();
tabname = tabname.replace(' ','');



var tabname = $(this).title();

로 고쳐봤는데 안 되네요...;;
var tabname = $(this).attr('title');
감사합니다!
수정하셨으면
tabname = tabname.replace(' ','');
이부분은 필요없겠네요~
네 지우고 쓰고 있습니다 ^^
소스에 요지는...
탭123중 하나를 클릭하면 그거에 맞게 텍스트가 출력되면되는건가요?
답변이 나왔네..
저는 이렇게 한번 해봤습니다.

<div id="Wrapper">
<div id="Navigation">
<ul id="primary">
<li class="TAB1"><a href="#" class="active">가</a></li>
<li class="TAB2"><a href="#">나</a></li>
<li class="TAB3"><a href="#">다</a></li>
</ul>
</div>
<div id="Container">
<div id="Content">
<div id="TAB1" style="">
<h1>Tab One</h1>
<p>
This is tab one. You can put specific information for tab one here.
</p>
</div>
<div id="TAB2" style="display: none;">
<h1>Tab Two</h1>
<p>
This is tab two. You can put specific information for tab one here.
</p>
</div>
<div id="TAB3" style="display: none;">
<h1>Tab Three</h1>
<p>
This is tab three. You can put specific information for tab one here.
</p>
</div>
</div>
</div>
</div>

<script>
$("#primary a").click(function(){
$("#primary a").removeClass("active");
$(this).addClass("active");
$("#Content div").css("display", "none");
//var tabname = $(this).text();
var tabname = $(this).parent("li").attr("class");
tabname = tabname.replace(' ','');
$("#"+tabname).css("display","block");
});
</script>
오호 이런 방법도 있군요.
이리저리 해보다 보니 li 에 class 로 스타일을 먹여줘야 할 때가 문제네요.
<li class="tab1 style">~</li>
이럼 되죠?

<div id="Wrapper">
<div id="Navigation">
<ul id="primary">
<li><a href="#" class="active">가</a><div style="display:none;" class="TAB1"></div></li>
<li><a href="#">나</a><div style="display:none;" class="TAB2"></div></li>
<li><a href="#">다</a><div style="display:none;" class="TAB3"></div></li>
</ul>
</div>
<div id="Container">
<div id="Content">
<div id="TAB1" style="">
<h1>Tab One</h1>
<p>
This is tab one. You can put specific information for tab one here.
</p>
</div>
<div id="TAB2" style="display: none;">
<h1>Tab Two</h1>
<p>
This is tab two. You can put specific information for tab one here.
</p>
</div>
<div id="TAB3" style="display: none;">
<h1>Tab Three</h1>
<p>
This is tab three. You can put specific information for tab one here.
</p>
</div>
</div>
</div>
</div>

<script>
$("#primary a").click(function(){
$("#primary a").removeClass("active");
$(this).addClass("active");
$("#Content div").css("display", "none");
//var tabname = $(this).text();
var tabname = $(this).next("div").attr("class");
tabname = tabname.replace(' ','');
$("#"+tabname).css("display","block");
});
</script>
display:none 을 일괄적용하고 싶어서 스타일을 적용하면요? ㅎㅎㅎ;;
display:none 하고는 관련이 없을텐데요.
next("div") 니까요.
<style type="text/css">
div.display_none{display:none}
</style>
이란 스타일시트가 있을 때

<li><a href="#" class="active">가</a><div class="TAB1 display_none"></div></li>
<li><a href="#">나</a><div class="TAB2 display_none"></div></li>
<li><a href="#">다</a><div class="TAB3 display_none"></div></li>

이렇게 되면 클래스명을 'TAB1 display_none' 으로 읽어오니까 아이디를 저렇게 해야 하잖아요 ㅋㅋㅋ
완전 정복

<div id="Wrapper">
<div id="Navigation">
<ul id="primary">
<li class="TAB1 first"><a href="#" class="active">가</a></li>
<li class="TAB2"><a href="#">나</a></li>
<li class="the TAB3 end"><a href="#">다</a></li>
</ul>
</div>
<div id="Container">
<div id="Content">
<div id="TAB1" style="">
<h1>Tab One</h1>
<p>
This is tab one. You can put specific information for tab one here.
</p>
</div>
<div id="TAB2" style="display: none;">
<h1>Tab Two</h1>
<p>
This is tab two. You can put specific information for tab one here.
</p>
</div>
<div id="TAB3" style="display: none;">
<h1>Tab Three</h1>
<p>
This is tab three. You can put specific information for tab one here.
</p>
</div>
</div>
</div>
</div>

<script>
$("#primary a").click(function(){
$("#primary a").removeClass("active");
$(this).addClass("active");
$("#Content div").css("display", "none");

$(this).parent("li").attr("class", function() {
var pattern = /\b(TAB\d+)\b/;
var result = this.className.match(pattern);
if (result != null) {
$("#"+result[1]).css("display","block");
}
});
});
</script>
오홍! 일단 한번 해보겠습니다. ㅎ
역시;;;여기 jQuery 역시;;웹고수들은 다여기모여있군 흠;; 난 저게 먼지모르는데;;
댓글을 작성하시려면 로그인이 필요합니다. 로그인

프로그램

+
제목 글쓴이 날짜 조회
14년 전 조회 547
14년 전 조회 2,452
14년 전 조회 602
14년 전 조회 833
14년 전 조회 1,665
14년 전 조회 1,292
14년 전 조회 1,543
14년 전 조회 1,108
14년 전 조회 2,100
14년 전 조회 777
14년 전 조회 793
14년 전 조회 618
14년 전 조회 1,420
14년 전 조회 1,034
14년 전 조회 756
14년 전 조회 5,285
14년 전 조회 1,901
14년 전 조회 1,137
14년 전 조회 636
14년 전 조회 9,430
14년 전 조회 1,545
14년 전 조회 562
14년 전 조회 546
14년 전 조회 1,415
14년 전 조회 1,990
14년 전 조회 1,542
14년 전 조회 792
14년 전 조회 2,040
14년 전 조회 2,044
14년 전 조회 2,996
14년 전 조회 1,097
14년 전 조회 1,288
14년 전 조회 803
14년 전 조회 893
14년 전 조회 2,112
14년 전 조회 902
14년 전 조회 2,376
14년 전 조회 619
14년 전 조회 3,490
14년 전 조회 711
14년 전 조회 2,062
14년 전 조회 3,450
14년 전 조회 760
14년 전 조회 939
14년 전 조회 1,299
14년 전 조회 796
14년 전 조회 1,302
14년 전 조회 1,231
14년 전 조회 1,343
14년 전 조회 1,091
14년 전 조회 722
14년 전 조회 1,193
14년 전 조회 1,166
14년 전 조회 1,045
14년 전 조회 600
14년 전 조회 583
14년 전 조회 931
14년 전 조회 495
14년 전 조회 3,061
14년 전 조회 573
14년 전 조회 936
14년 전 조회 589
14년 전 조회 617
14년 전 조회 1,849
14년 전 조회 906
14년 전 조회 1,386
14년 전 조회 644
14년 전 조회 1,276
14년 전 조회 1,754
14년 전 조회 794
14년 전 조회 1,315
14년 전 조회 808
14년 전 조회 1,175
14년 전 조회 2,598
14년 전 조회 660
14년 전 조회 4,782
14년 전 조회 672
14년 전 조회 857
14년 전 조회 701
14년 전 조회 3,390
14년 전 조회 505
14년 전 조회 835
14년 전 조회 1,133
14년 전 조회 1,131
14년 전 조회 625
14년 전 조회 1,229
14년 전 조회 711
14년 전 조회 598
14년 전 조회 2,251
14년 전 조회 949
14년 전 조회 574
14년 전 조회 574
14년 전 조회 1,603
14년 전 조회 754
14년 전 조회 1,161
14년 전 조회 1,152
14년 전 조회 1,756
14년 전 조회 1,832
14년 전 조회 1,104
14년 전 조회 765
🐛 버그신고