왜 탭 안의 메뉴를 선택하면 div 앞의 내용이 없어졌다가 다시 나올까요??? ㅠ..ㅠ 정보
왜 탭 안의 메뉴를 선택하면 div 앞의 내용이 없어졌다가 다시 나올까요??? ㅠ..ㅠ첨부파일
본문
http://www.pitt.co.kr 에서 잡담나누기 메뉴를 선택하면 div 안에 있는 내용이 쫙 없어졌다가 다시 나옵니다.
왜 그럴까요? ㅠ..ㅠ ... 제가 선택한 소스에서만 그런가요??? 아니면 모든 탭에서 다 그런건가요? ㅠ..ㅠ
아래는 제가 쓴 소스 입니다. 코드들은 첨부파일에 모두 있어요
참조코드는 ... index.php에서...
<tr>
<td style="padding-right:12px;">
<div class="tabber" id="mytabber1">
<div class="tabbertab">
<h2>카페</h2>
<p><?=print_menu2($menu_arr1) ?></p>
</div>
<div class="tabbertab">
<h2>정보</h2>
<p><?=print_menu2($menu_arr2) ?></p>
</div>
<div class="tabbertab">
<h2>장터</h2>
<p><?=print_menu2($menu_arr3) ?></p>
</div>
<div class="tabbertab">
<h2>기타</h2>
<p><?=print_menu2($menu_arr4) ?></p>
</div>
</div>
</td>
</tr>
<td style="padding-right:12px;">
<div class="tabber" id="mytabber1">
<div class="tabbertab">
<h2>카페</h2>
<p><?=print_menu2($menu_arr1) ?></p>
</div>
<div class="tabbertab">
<h2>정보</h2>
<p><?=print_menu2($menu_arr2) ?></p>
</div>
<div class="tabbertab">
<h2>장터</h2>
<p><?=print_menu2($menu_arr3) ?></p>
</div>
<div class="tabbertab">
<h2>기타</h2>
<p><?=print_menu2($menu_arr4) ?></p>
</div>
</div>
</td>
</tr>
탭 관련 부분에서 ...
<!-- 탭메뉴 구성 -->
<style>
.tabberlive .tabbertabhide {
display:none;
}
<style>
.tabberlive .tabbertabhide {
display:none;
}
ul.tabbernav
{
margin:0;
padding: 5px 0;
border-bottom: 1px solid #778;
font: 11px Verdana;
}
{
margin:0;
padding: 5px 0;
border-bottom: 1px solid #778;
font: 11px Verdana;
}
ul.tabbernav li
{
list-style: none;
margin: 0;
display: inline;
}
{
list-style: none;
margin: 0;
display: inline;
}
ul.tabbernav li a
{
padding: 5px 8px;
margin-left: 0px;
margin-right: 2px;
border: 1px solid #778;
border-bottom: none;
background: #DDE;
text-decoration: none;
}
{
padding: 5px 8px;
margin-left: 0px;
margin-right: 2px;
border: 1px solid #778;
border-bottom: none;
background: #DDE;
text-decoration: none;
}
ul.tabbernav li a:link { color: #448; }
ul.tabbernav li a:visited { color: #667; }
ul.tabbernav li a:visited { color: #667; }
ul.tabbernav li a:hover
{
color: #000;
background: #AAE;
border-color: #227;
}
{
color: #000;
background: #AAE;
border-color: #227;
}
ul.tabbernav li.tabberactive a
{
background-color: #fff;
border-bottom: 1px solid #fff;
}
{
background-color: #fff;
border-bottom: 1px solid #fff;
}
ul.tabbernav li.tabberactive a:hover
{
color: #000;
background: white;
border-bottom: 1px solid white;
}
{
color: #000;
background: white;
border-bottom: 1px solid white;
}
.tabberlive .tabbertab {
padding:5px;
border:1px solid #aaa;
border-top:0;
}
padding:5px;
border:1px solid #aaa;
border-top:0;
}
.tabberlive .tabbertab h2 {
display:none;
}
.tabberlive .tabbertab h3 {
display:none;
}
display:none;
}
.tabberlive .tabbertab h3 {
display:none;
}
.tabberlive#tab2 .tabbertab {
height:200px;
overflow:auto;
}
</style>
height:200px;
overflow:auto;
}
</style>
<script type="text/javascript">
document.write('<style type="text/css">.tabber{display:none;}<\/style>');
document.write('<style type="text/css">.tabber{display:none;}<\/style>');
var tabberOptions = {
'cookie':"tabber", /* Name to use for the cookie */
'onLoad': function(argsObj)
{
var t = argsObj.tabber;
var i;
'onLoad': function(argsObj)
{
var t = argsObj.tabber;
var i;
if (t.id) {
t.cookie = t.id + t.cookie;
}
t.cookie = t.id + t.cookie;
}
i = parseInt(getCookie(t.cookie));
if (isNaN(i)) { return; }
t.tabShow(i);
// alert('getCookie(' + t.cookie + ') = ' + i);
},
if (isNaN(i)) { return; }
t.tabShow(i);
// alert('getCookie(' + t.cookie + ') = ' + i);
},
'onClick':function(argsObj)
{
var c = argsObj.tabber.cookie;
var i = argsObj.index;
// alert('setCookie(' + c + ',' + i + ')');
setCookie(c, i);
}
};
{
var c = argsObj.tabber.cookie;
var i = argsObj.index;
// alert('setCookie(' + c + ',' + i + ')');
setCookie(c, i);
}
};
function setCookie(name, value, expires, path, domain, secure) {
document.cookie= name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");
}
document.cookie= name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");
}
function getCookie(name) {
var dc = document.cookie;
var prefix = name + "=";
var begin = dc.indexOf("; " + prefix);
if (begin == -1) {
begin = dc.indexOf(prefix);
if (begin != 0) return null;
} else {
begin += 2;
}
var end = document.cookie.indexOf(";", begin);
if (end == -1) {
end = dc.length;
}
return unescape(dc.substring(begin + prefix.length, end));
}
function deleteCookie(name, path, domain) {
if (getCookie(name)) {
document.cookie = name + "=" +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}
var dc = document.cookie;
var prefix = name + "=";
var begin = dc.indexOf("; " + prefix);
if (begin == -1) {
begin = dc.indexOf(prefix);
if (begin != 0) return null;
} else {
begin += 2;
}
var end = document.cookie.indexOf(";", begin);
if (end == -1) {
end = dc.length;
}
return unescape(dc.substring(begin + prefix.length, end));
}
function deleteCookie(name, path, domain) {
if (getCookie(name)) {
document.cookie = name + "=" +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}
</script>
<script type="text/javascript" src="<?=$g4[path]?>/js/tabber.js"></script>
<!-- 탭메뉴 구성 -->
<!-- 탭메뉴 구성 -->
좌측 메뉴를 만드는 함수에서...
<?
//메뉴 구조
$menu_arr1[] = array('type'=>'menu', 'id'=>'notice', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'공지사항', 'url'=>'bbs/board.php?bo_table=notice');
$menu_arr1[] = array('type'=>'menu', 'id'=>'fretalk', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'잡담나누기', 'url'=>'bbs/board.php?bo_table=fretalk');
$menu_arr1[] = array('type'=>'menu', 'id'=>'oneline', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'한줄의 잡담', 'url'=>'bbs/board.php?bo_table=oneline');
$menu_arr1[] = array('type'=>'menu', 'id'=>'image_all', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'이미지목록', 'url'=>'image_all.php');
$menu_arr1[] = array('type'=>'menu', 'id'=>'mat', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'예비맘', 'url'=>'bbs/board.php?bo_table=mat');
$menu_arr1[] = array('type'=>'menu', 'id'=>'baby', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'아기맘', 'url'=>'bbs/board.php?bo_table=baby');
$menu_arr1[] = array('type'=>'menu', 'id'=>'child', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'어린이맘', 'url'=>'bbs/board.php?bo_table=child');
$menu_arr1[] = array('type'=>'menu', 'id'=>'papa', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'아빠/삼촌방', 'url'=>'bbs/board.php?bo_table=papa');
$menu_arr1[] = array('type'=>'menu', 'id'=>'mom', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'엄마/이모방', 'url'=>'bbs/board.php?bo_table=mom');
$menu_arr1[] = array('type'=>'menu', 'id'=>'recipe', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'레시피(이유식)', 'url'=>'bbs/board.php?bo_table=recipe');
$menu_arr1[] = array('type'=>'menu', 'id'=>'dish', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'맛집', 'url'=>'bbs/board.php?bo_table=dish');
$menu_arr1[] = array('type'=>'menu', 'id'=>'100il', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'백일돌 하기', 'url'=>'bbs/board.php?bo_table=100il');
$menu_arr1[] = array('type'=>'menu', 'id'=>'orange', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'오렌지향기-자연나라', 'url'=>'bbs/board.php?bo_table=orange');
$menu_arr1[] = array('type'=>'menu', 'id'=>'say_hello', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'인사나누기', 'url'=>'bbs/board.php?bo_table=say_hello');
$menu_arr1[] = array('type'=>'menu', 'id'=>'gabbly', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'채팅하기(gabbly)', 'url'=>'gabbly.php', 'target'=>'popup', 'width'=>800, 'height'=>600);
$menu_arr1[] = array('type'=>'menu', 'id'=>'mypage', 'depth'=>0, 'icon'=>'bullet_brown.gif', 'title'=>'마이페이지', 'url'=>'my_page2.php');
$menu_arr1[] = array('type'=>'bar');
$menu_arr1[] = array('type'=>'menu', 'id'=>'qna', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'묻고답하기', 'url'=>'bbs/board.php?bo_table=qna');
$menu_arr1[] = array('type'=>'menu', 'id'=>'qna', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'사이즈 문의', 'url'=>'bbs/board.php?bo_table=qna_size');
$menu_arr1[] = array('type'=>'menu', 'id'=>'search', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'DiorCafe 검색', 'url'=>'bbs/search.php?sfl=wr_subject||wr_content');
$menu_arr1[] = array('type'=>'menu', 'id'=>'1to1', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'불당에게질문하기', 'url'=>'bbs/board.php?bo_table=1to1');
$menu_arr1[] = array('type'=>'bar');
$menu_arr1[] = array('type'=>'menu', 'id'=>'buytalk', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'구매후기', 'url'=>'bbs/board.php?bo_table=buytalk');
$menu_arr1[] = array('type'=>'menu', 'id'=>'usetalk', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'사용후기', 'url'=>'bbs/board.php?bo_table=usetalk');
$menu_arr1[] = array('type'=>'menu', 'id'=>'buytalk', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'구매실수', 'url'=>'bbs/board.php?bo_table=buyxx');
$menu_arr1[] = array('type'=>'menu', 'id'=>'defect_item', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'불량제품후기', 'url'=>'bbs/board.php?bo_table=defect_item');
$menu_arr1[] = array('type'=>'bar');
$menu_arr1[] = array('type'=>'menu', 'id'=>'babycare', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'육아정보', 'url'=>'bbs/board.php?bo_table=babycare');
$menu_arr1[] = array('type'=>'menu', 'id'=>'babybook', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'교육정보', 'url'=>'bbs/board.php?bo_table=babybook');
$menu_arr1[] = array('type'=>'menu', 'id'=>'talk_money', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'돈버는재테크', 'url'=>'bbs/board.php?bo_table=talk_money');
$menu_arr1[] = array('type'=>'menu', 'id'=>'money_woori', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'리얼옥션', 'url'=>'bbs/board.php?bo_table=real_auction');
$menu_arr1[] = array('type'=>'menu', 'id'=>'etc_info', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'이런저런정보', 'url'=>'bbs/board.php?bo_table=etc_info');
$menu_arr1[] = array('type'=>'menu', 'id'=>'money_woori', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'우리증권-펀드/ELS', 'url'=>'bbs/board.php?bo_table=money_woori');
//메뉴 구조
$menu_arr1[] = array('type'=>'menu', 'id'=>'notice', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'공지사항', 'url'=>'bbs/board.php?bo_table=notice');
$menu_arr1[] = array('type'=>'menu', 'id'=>'fretalk', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'잡담나누기', 'url'=>'bbs/board.php?bo_table=fretalk');
$menu_arr1[] = array('type'=>'menu', 'id'=>'oneline', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'한줄의 잡담', 'url'=>'bbs/board.php?bo_table=oneline');
$menu_arr1[] = array('type'=>'menu', 'id'=>'image_all', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'이미지목록', 'url'=>'image_all.php');
$menu_arr1[] = array('type'=>'menu', 'id'=>'mat', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'예비맘', 'url'=>'bbs/board.php?bo_table=mat');
$menu_arr1[] = array('type'=>'menu', 'id'=>'baby', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'아기맘', 'url'=>'bbs/board.php?bo_table=baby');
$menu_arr1[] = array('type'=>'menu', 'id'=>'child', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'어린이맘', 'url'=>'bbs/board.php?bo_table=child');
$menu_arr1[] = array('type'=>'menu', 'id'=>'papa', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'아빠/삼촌방', 'url'=>'bbs/board.php?bo_table=papa');
$menu_arr1[] = array('type'=>'menu', 'id'=>'mom', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'엄마/이모방', 'url'=>'bbs/board.php?bo_table=mom');
$menu_arr1[] = array('type'=>'menu', 'id'=>'recipe', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'레시피(이유식)', 'url'=>'bbs/board.php?bo_table=recipe');
$menu_arr1[] = array('type'=>'menu', 'id'=>'dish', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'맛집', 'url'=>'bbs/board.php?bo_table=dish');
$menu_arr1[] = array('type'=>'menu', 'id'=>'100il', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'백일돌 하기', 'url'=>'bbs/board.php?bo_table=100il');
$menu_arr1[] = array('type'=>'menu', 'id'=>'orange', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'오렌지향기-자연나라', 'url'=>'bbs/board.php?bo_table=orange');
$menu_arr1[] = array('type'=>'menu', 'id'=>'say_hello', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'인사나누기', 'url'=>'bbs/board.php?bo_table=say_hello');
$menu_arr1[] = array('type'=>'menu', 'id'=>'gabbly', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'채팅하기(gabbly)', 'url'=>'gabbly.php', 'target'=>'popup', 'width'=>800, 'height'=>600);
$menu_arr1[] = array('type'=>'menu', 'id'=>'mypage', 'depth'=>0, 'icon'=>'bullet_brown.gif', 'title'=>'마이페이지', 'url'=>'my_page2.php');
$menu_arr1[] = array('type'=>'bar');
$menu_arr1[] = array('type'=>'menu', 'id'=>'qna', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'묻고답하기', 'url'=>'bbs/board.php?bo_table=qna');
$menu_arr1[] = array('type'=>'menu', 'id'=>'qna', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'사이즈 문의', 'url'=>'bbs/board.php?bo_table=qna_size');
$menu_arr1[] = array('type'=>'menu', 'id'=>'search', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'DiorCafe 검색', 'url'=>'bbs/search.php?sfl=wr_subject||wr_content');
$menu_arr1[] = array('type'=>'menu', 'id'=>'1to1', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'불당에게질문하기', 'url'=>'bbs/board.php?bo_table=1to1');
$menu_arr1[] = array('type'=>'bar');
$menu_arr1[] = array('type'=>'menu', 'id'=>'buytalk', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'구매후기', 'url'=>'bbs/board.php?bo_table=buytalk');
$menu_arr1[] = array('type'=>'menu', 'id'=>'usetalk', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'사용후기', 'url'=>'bbs/board.php?bo_table=usetalk');
$menu_arr1[] = array('type'=>'menu', 'id'=>'buytalk', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'구매실수', 'url'=>'bbs/board.php?bo_table=buyxx');
$menu_arr1[] = array('type'=>'menu', 'id'=>'defect_item', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'불량제품후기', 'url'=>'bbs/board.php?bo_table=defect_item');
$menu_arr1[] = array('type'=>'bar');
$menu_arr1[] = array('type'=>'menu', 'id'=>'babycare', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'육아정보', 'url'=>'bbs/board.php?bo_table=babycare');
$menu_arr1[] = array('type'=>'menu', 'id'=>'babybook', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'교육정보', 'url'=>'bbs/board.php?bo_table=babybook');
$menu_arr1[] = array('type'=>'menu', 'id'=>'talk_money', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'돈버는재테크', 'url'=>'bbs/board.php?bo_table=talk_money');
$menu_arr1[] = array('type'=>'menu', 'id'=>'money_woori', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'리얼옥션', 'url'=>'bbs/board.php?bo_table=real_auction');
$menu_arr1[] = array('type'=>'menu', 'id'=>'etc_info', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'이런저런정보', 'url'=>'bbs/board.php?bo_table=etc_info');
$menu_arr1[] = array('type'=>'menu', 'id'=>'money_woori', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'우리증권-펀드/ELS', 'url'=>'bbs/board.php?bo_table=money_woori');
$menu_arr2[] = array('type'=>'menu', 'id'=>'sitelink2', 'depth'=>0, 'icon'=>'bullet_brown.gif', 'title'=>'해외구매사이트', 'url'=>'bbs/board.php?bo_table=sitelink2');
$menu_arr2[] = array('type'=>'menu', 'id'=>'useful_link', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'유용한 사이트', 'url'=>'bbs/board.php?bo_table=useful_link');
$menu_arr2[] = array('type'=>'menu', 'id'=>'buybook', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'구매참고서', 'url'=>'bbs/board.php?bo_table=buybook');
$menu_arr2[] = array('type'=>'menu', 'id'=>'thecheat', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'더치트(사기꾼검색)', 'url'=>'http://thecheat.co.kr/bbs/zboard.php?id=cheat&boan=2','target'=>'popup', 'width'=>850, 'height'=>600);
$menu_arr2[] = array('type'=>'menu', 'id'=>'saleinfo', 'depth'=>0, 'icon'=>'bullet_brown.gif', 'title'=>'Sale,Coupon 정보', 'url'=>'bbs/board.php?bo_table=saleinfo');
$menu_arr2[] = array('type'=>'menu', 'id'=>'saleinfo', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'Coupon 나누기', 'url'=>'bbs/board.php?bo_table=coupon_exchange');
$menu_arr2[] = array('type'=>'menu', 'id'=>'mart_sale', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'코스트코 할인점 백화점', 'url'=>'bbs/board.php?bo_table=mart_sale');
$menu_arr2[] = array('type'=>'menu', 'id'=>'hotdeal', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'Hot Deal (초저가)', 'url'=>'bbs/board.php?bo_table=hotdeal');
$menu_arr2[] = array('type'=>'menu', 'id'=>'cart', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'장바구니 공개', 'url'=>'bbs/board.php?bo_table=cart');
$menu_arr2[] = array('type'=>'menu', 'id'=>'gift', 'depth'=>0, 'icon'=>'bullet_brown.gif', 'title'=>'공짜 무료 샘플', 'url'=>'bbs/board.php?bo_table=gift');
$menu_arr2[] = array('type'=>'bar');
$menu_arr2[] = array('type'=>'menu', 'id'=>'qna', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'묻고답하기', 'url'=>'bbs/board.php?bo_table=qna');
$menu_arr2[] = array('type'=>'menu', 'id'=>'qna', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'사이즈 문의', 'url'=>'bbs/board.php?bo_table=qna_size');
$menu_arr2[] = array('type'=>'menu', 'id'=>'search', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'DiorCafe 검색', 'url'=>'bbs/search.php?sfl=wr_subject||wr_content');
$menu_arr2[] = array('type'=>'menu', 'id'=>'address', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'영어주소찾기', 'url'=>'bbs/zip.php?frm_option=search');
$menu_arr2[] = array('type'=>'menu', 'id'=>'unit', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'단위환산', 'url'=>'metric_change/metric_change.php', 'target'=>'popup', 'width'=>850, 'height'=>300);
$menu_arr2[] = array('type'=>'bar');
$menu_arr2[] = array('type'=>'menu', 'id'=>'buytalk', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'구매후기', 'url'=>'bbs/board.php?bo_table=buytalk');
$menu_arr2[] = array('type'=>'menu', 'id'=>'usetalk', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'사용후기', 'url'=>'bbs/board.php?bo_table=usetalk');
$menu_arr2[] = array('type'=>'menu', 'id'=>'buytalk', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'구매실수', 'url'=>'bbs/board.php?bo_table=buyxx');
$menu_arr2[] = array('type'=>'menu', 'id'=>'defect_item', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'불량제품후기', 'url'=>'bbs/board.php?bo_table=defect_item');
$menu_arr2[] = array('type'=>'bar');
$menu_arr2[] = array('type'=>'menu', 'id'=>'suggest_babycar', 'depth'=>0, 'icon'=>'bullet_violet.gif', 'title'=>'유모차/카시트/아기띠', 'url'=>'bbs/board.php?bo_table=suggest_babycar');
$menu_arr2[] = array('type'=>'menu', 'id'=>'suggest_other', 'depth'=>0, 'icon'=>'bullet_violet.gif', 'title'=>'의류/신발/가방/기타', 'url'=>'bbs/board.php?bo_table=suggest_other');
$menu_arr2[] = array('type'=>'menu', 'id'=>'useful_link', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'유용한 사이트', 'url'=>'bbs/board.php?bo_table=useful_link');
$menu_arr2[] = array('type'=>'menu', 'id'=>'buybook', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'구매참고서', 'url'=>'bbs/board.php?bo_table=buybook');
$menu_arr2[] = array('type'=>'menu', 'id'=>'thecheat', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'더치트(사기꾼검색)', 'url'=>'http://thecheat.co.kr/bbs/zboard.php?id=cheat&boan=2','target'=>'popup', 'width'=>850, 'height'=>600);
$menu_arr2[] = array('type'=>'menu', 'id'=>'saleinfo', 'depth'=>0, 'icon'=>'bullet_brown.gif', 'title'=>'Sale,Coupon 정보', 'url'=>'bbs/board.php?bo_table=saleinfo');
$menu_arr2[] = array('type'=>'menu', 'id'=>'saleinfo', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'Coupon 나누기', 'url'=>'bbs/board.php?bo_table=coupon_exchange');
$menu_arr2[] = array('type'=>'menu', 'id'=>'mart_sale', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'코스트코 할인점 백화점', 'url'=>'bbs/board.php?bo_table=mart_sale');
$menu_arr2[] = array('type'=>'menu', 'id'=>'hotdeal', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'Hot Deal (초저가)', 'url'=>'bbs/board.php?bo_table=hotdeal');
$menu_arr2[] = array('type'=>'menu', 'id'=>'cart', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'장바구니 공개', 'url'=>'bbs/board.php?bo_table=cart');
$menu_arr2[] = array('type'=>'menu', 'id'=>'gift', 'depth'=>0, 'icon'=>'bullet_brown.gif', 'title'=>'공짜 무료 샘플', 'url'=>'bbs/board.php?bo_table=gift');
$menu_arr2[] = array('type'=>'bar');
$menu_arr2[] = array('type'=>'menu', 'id'=>'qna', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'묻고답하기', 'url'=>'bbs/board.php?bo_table=qna');
$menu_arr2[] = array('type'=>'menu', 'id'=>'qna', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'사이즈 문의', 'url'=>'bbs/board.php?bo_table=qna_size');
$menu_arr2[] = array('type'=>'menu', 'id'=>'search', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'DiorCafe 검색', 'url'=>'bbs/search.php?sfl=wr_subject||wr_content');
$menu_arr2[] = array('type'=>'menu', 'id'=>'address', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'영어주소찾기', 'url'=>'bbs/zip.php?frm_option=search');
$menu_arr2[] = array('type'=>'menu', 'id'=>'unit', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'단위환산', 'url'=>'metric_change/metric_change.php', 'target'=>'popup', 'width'=>850, 'height'=>300);
$menu_arr2[] = array('type'=>'bar');
$menu_arr2[] = array('type'=>'menu', 'id'=>'buytalk', 'depth'=>0, 'icon'=>'bullet_purple.gif', 'title'=>'구매후기', 'url'=>'bbs/board.php?bo_table=buytalk');
$menu_arr2[] = array('type'=>'menu', 'id'=>'usetalk', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'사용후기', 'url'=>'bbs/board.php?bo_table=usetalk');
$menu_arr2[] = array('type'=>'menu', 'id'=>'buytalk', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'구매실수', 'url'=>'bbs/board.php?bo_table=buyxx');
$menu_arr2[] = array('type'=>'menu', 'id'=>'defect_item', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'불량제품후기', 'url'=>'bbs/board.php?bo_table=defect_item');
$menu_arr2[] = array('type'=>'bar');
$menu_arr2[] = array('type'=>'menu', 'id'=>'suggest_babycar', 'depth'=>0, 'icon'=>'bullet_violet.gif', 'title'=>'유모차/카시트/아기띠', 'url'=>'bbs/board.php?bo_table=suggest_babycar');
$menu_arr2[] = array('type'=>'menu', 'id'=>'suggest_other', 'depth'=>0, 'icon'=>'bullet_violet.gif', 'title'=>'의류/신발/가방/기타', 'url'=>'bbs/board.php?bo_table=suggest_other');
$menu_arr3[] = array('type'=>'menu', 'id'=>'showup', 'depth'=>0, 'icon'=>'bullet_brown.gif', 'title'=>'홍보합니다', 'url'=>'bbs/board.php?bo_table=showup');
$menu_arr3[] = array('type'=>'menu', 'id'=>'sell', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'판매.대행 (국내)', 'url'=>'bbs/board.php?bo_table=sell');
$menu_arr3[] = array('type'=>'menu', 'id'=>'sell_shipment', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'판매.대행 (진행정보)', 'url'=>'bbs/board.php?bo_table=sell_shipment');
$menu_arr3[] = array('type'=>'menu', 'id'=>'sell', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'공구.대행 (해외)', 'url'=>'bbs/board.php?bo_table=usa_sell');
$menu_arr3[] = array('type'=>'menu', 'id'=>'homemade', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'홈메이드(직접만든거)', 'url'=>'bbs/board.php?bo_table=homemade');
$menu_arr3[] = array('type'=>'menu', 'id'=>'thecheat', 'depth'=>0, 'icon'=>'bullet_red.gif', 'title'=>'더치트(사기꾼검색)', 'url'=>'http://thecheat.co.kr/bbs/zboard.php?id=cheat&boan=2','target'=>'popup', 'width'=>850, 'height'=>600);
$menu_arr3[] = array('type'=>'menu', 'id'=>'useful_link', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'더치트 (등록된 사이트)', 'url'=>'bbs/board.php?bo_table=cheat_link');
$menu_arr3[] = array('type'=>'bar');
$menu_arr3[] = array('type'=>'menu', 'id'=>'09', 'depth'=>0, 'icon'=>'bullet_red.gif', 'title'=>'같이구매해요', 'url'=>'bbs/board.php?bo_table=09');
$menu_arr3[] = array('type'=>'menu', 'id'=>'hap', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'같이구매 (진행정보)', 'url'=>'bbs/board.php?bo_table=09_shipment');
$menu_arr3[] = array('type'=>'menu', 'id'=>'hap', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'같이배송해요 (합배송)', 'url'=>'bbs/board.php?bo_table=hap');
$menu_arr3[] = array('type'=>'menu', 'id'=>'09', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'제대혈 공구', 'url'=>'bbs/board.php?bo_table=icord');
$menu_arr3[] = array('type'=>'menu', 'id'=>'buy', 'depth'=>0, 'icon'=>'bullet_red.gif', 'title'=>'구합니다', 'url'=>'bbs/board.php?bo_table=buy');
$menu_arr3[] = array('type'=>'menu', 'id'=>'flea', 'depth'=>0, 'icon'=>'bullet_red.gif', 'title'=>'팔거나 드립니다', 'url'=>'bbs/board.php?bo_table=flea');
$menu_arr3[] = array('type'=>'menu', 'id'=>'sell', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'판매.대행 (국내)', 'url'=>'bbs/board.php?bo_table=sell');
$menu_arr3[] = array('type'=>'menu', 'id'=>'sell_shipment', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'판매.대행 (진행정보)', 'url'=>'bbs/board.php?bo_table=sell_shipment');
$menu_arr3[] = array('type'=>'menu', 'id'=>'sell', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'공구.대행 (해외)', 'url'=>'bbs/board.php?bo_table=usa_sell');
$menu_arr3[] = array('type'=>'menu', 'id'=>'homemade', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'홈메이드(직접만든거)', 'url'=>'bbs/board.php?bo_table=homemade');
$menu_arr3[] = array('type'=>'menu', 'id'=>'thecheat', 'depth'=>0, 'icon'=>'bullet_red.gif', 'title'=>'더치트(사기꾼검색)', 'url'=>'http://thecheat.co.kr/bbs/zboard.php?id=cheat&boan=2','target'=>'popup', 'width'=>850, 'height'=>600);
$menu_arr3[] = array('type'=>'menu', 'id'=>'useful_link', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'더치트 (등록된 사이트)', 'url'=>'bbs/board.php?bo_table=cheat_link');
$menu_arr3[] = array('type'=>'bar');
$menu_arr3[] = array('type'=>'menu', 'id'=>'09', 'depth'=>0, 'icon'=>'bullet_red.gif', 'title'=>'같이구매해요', 'url'=>'bbs/board.php?bo_table=09');
$menu_arr3[] = array('type'=>'menu', 'id'=>'hap', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'같이구매 (진행정보)', 'url'=>'bbs/board.php?bo_table=09_shipment');
$menu_arr3[] = array('type'=>'menu', 'id'=>'hap', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'같이배송해요 (합배송)', 'url'=>'bbs/board.php?bo_table=hap');
$menu_arr3[] = array('type'=>'menu', 'id'=>'09', 'depth'=>1, 'icon'=>'bullet_green.gif', 'title'=>'제대혈 공구', 'url'=>'bbs/board.php?bo_table=icord');
$menu_arr3[] = array('type'=>'menu', 'id'=>'buy', 'depth'=>0, 'icon'=>'bullet_red.gif', 'title'=>'구합니다', 'url'=>'bbs/board.php?bo_table=buy');
$menu_arr3[] = array('type'=>'menu', 'id'=>'flea', 'depth'=>0, 'icon'=>'bullet_red.gif', 'title'=>'팔거나 드립니다', 'url'=>'bbs/board.php?bo_table=flea');
$menu_arr4[] = array('type'=>'menu', 'id'=>'point_ranking', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'포인트순위', 'url'=>'point_ranking.php');
$menu_arr4[] = array('type'=>'menu', 'id'=>'point_rule', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'포인트 Rule', 'url'=>'modules/point_rule.php');
$menu_arr4[] = array('type'=>'menu', 'id'=>'sitemap', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'사이트맵', 'url'=>'sitemap.php');
$menu_arr4[] = array('type'=>'bar');
$menu_arr4[] = array('type'=>'menu', 'id'=>'1to1', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'옮겨진 내글들', 'url'=>'bbs/board.php?bo_table=1to1_bkup');
$menu_arr4[] = array('type'=>'menu', 'id'=>'my_recent', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'나의 최근 게시글', 'url'=>'bbs/new.php?view=w&mb_id='.$member['mb_id']);
$menu_arr4[] = array('type'=>'menu', 'id'=>'my_recent', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'내가 읽은 글', 'url'=>'mylib/my_read_list.php');
$menu_arr4[] = array('type'=>'menu', 'id'=>'diorgarden', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'디올가든 (Beta)', 'url'=>'http://www.diorgarden.co.kr', 'target'=>'popup', 'width'=>1200, 'height'=>800);
$menu_arr4[] = array('type'=>'menu', 'id'=>'homeschool', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'홈스쿨링 - USA', 'url'=>'bbs/board.php?bo_table=hschool');
$menu_arr4[] = array('type'=>'menu', 'id'=>'calendar', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'달력/기념일/D-Day', 'url'=>'metric_change/total_calendar.php', 'target'=>'popup', 'width'=>850, 'height'=>400);
$menu_arr4[] = array('type'=>'menu', 'id'=>'blogmusic', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'블로그음악실', 'url'=>'bbs/board.php?bo_table=blogmusic', 'target'=>'popup', 'width'=>750, 'height'=>600);
$menu_arr4[] = array('type'=>'menu', 'id'=>'showprice', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'최저가격비교', 'url'=>'bbs/board.php?bo_table=showprice');
$menu_arr4[] = array('type'=>'menu', 'id'=>'point_rule', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'포인트 Rule', 'url'=>'modules/point_rule.php');
$menu_arr4[] = array('type'=>'menu', 'id'=>'sitemap', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'사이트맵', 'url'=>'sitemap.php');
$menu_arr4[] = array('type'=>'bar');
$menu_arr4[] = array('type'=>'menu', 'id'=>'1to1', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'옮겨진 내글들', 'url'=>'bbs/board.php?bo_table=1to1_bkup');
$menu_arr4[] = array('type'=>'menu', 'id'=>'my_recent', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'나의 최근 게시글', 'url'=>'bbs/new.php?view=w&mb_id='.$member['mb_id']);
$menu_arr4[] = array('type'=>'menu', 'id'=>'my_recent', 'depth'=>0, 'icon'=>'bullet_blue.gif', 'title'=>'내가 읽은 글', 'url'=>'mylib/my_read_list.php');
$menu_arr4[] = array('type'=>'menu', 'id'=>'diorgarden', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'디올가든 (Beta)', 'url'=>'http://www.diorgarden.co.kr', 'target'=>'popup', 'width'=>1200, 'height'=>800);
$menu_arr4[] = array('type'=>'menu', 'id'=>'homeschool', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'홈스쿨링 - USA', 'url'=>'bbs/board.php?bo_table=hschool');
$menu_arr4[] = array('type'=>'menu', 'id'=>'calendar', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'달력/기념일/D-Day', 'url'=>'metric_change/total_calendar.php', 'target'=>'popup', 'width'=>850, 'height'=>400);
$menu_arr4[] = array('type'=>'menu', 'id'=>'blogmusic', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'블로그음악실', 'url'=>'bbs/board.php?bo_table=blogmusic', 'target'=>'popup', 'width'=>750, 'height'=>600);
$menu_arr4[] = array('type'=>'menu', 'id'=>'showprice', 'depth'=>0, 'icon'=>'bullet_green.gif', 'title'=>'최저가격비교', 'url'=>'bbs/board.php?bo_table=showprice');
// 메뉴출력하기
function print_menu2($menu_arr)
{
global $config, $g4;
echo "<table border=0 cellspacing=0 cellpadding=0 width='90%'>";
foreach( $menu_arr as $menu_item ) {
switch($menu_item['type']) {
case 'menu':
if( !$member[mb_open] and $menu_item['id'] == 'mypage') // 로그인 하지 않은 경우 마이페이지 메뉴가 나오지 않게
break;
echo "<tr>
<td style=\"padding:3px;\">";
//<td style=\"padding:3px; padding-left:8px; padding-right:3px;\">";
if( $menu_item['depth'] > 0) {
echo str_repeat(" ", $menu_item['depth']-1);
echo " <img src=\"http://echo4me.imagetong.com/gnuboard4/images/bu_group.gif\">";
}
switch($menu_item['target']) {
case 'popup':
$link = "javascript:openwin('".$menu_item['url']."', ".$menu_item['width'].",".$menu_item['height'].");";
break;
default:
$link = "./?menu_id=".$menu_item['id']."&url=".urlencode($menu_item['url']);
break;
}
echo "
<img src=\"http://echo4me.imagetong.com/gnuboard4/images/" . $menu_item['icon'] . "\" align=absmiddle>
<a href=\"" . $link . "\"><span id=\"menu_" . $menu_item['id'] . "\">" . $menu_item['title'] . "</span></a></td>
</tr>";
break;
case 'bar':
echo "
<tr>
<td colspan=2 style=\"padding-top:5px; padding-bottom:5px;\">
<img src=\"http://echo4me.imagetong.com/gnuboard4/images/menu_sep_bar.gif\"></td>
</tr>";
break;
} // end of switch
} // end of foreach
function print_menu2($menu_arr)
{
global $config, $g4;
echo "<table border=0 cellspacing=0 cellpadding=0 width='90%'>";
foreach( $menu_arr as $menu_item ) {
switch($menu_item['type']) {
case 'menu':
if( !$member[mb_open] and $menu_item['id'] == 'mypage') // 로그인 하지 않은 경우 마이페이지 메뉴가 나오지 않게
break;
echo "<tr>
<td style=\"padding:3px;\">";
//<td style=\"padding:3px; padding-left:8px; padding-right:3px;\">";
if( $menu_item['depth'] > 0) {
echo str_repeat(" ", $menu_item['depth']-1);
echo " <img src=\"http://echo4me.imagetong.com/gnuboard4/images/bu_group.gif\">";
}
switch($menu_item['target']) {
case 'popup':
$link = "javascript:openwin('".$menu_item['url']."', ".$menu_item['width'].",".$menu_item['height'].");";
break;
default:
$link = "./?menu_id=".$menu_item['id']."&url=".urlencode($menu_item['url']);
break;
}
echo "
<img src=\"http://echo4me.imagetong.com/gnuboard4/images/" . $menu_item['icon'] . "\" align=absmiddle>
<a href=\"" . $link . "\"><span id=\"menu_" . $menu_item['id'] . "\">" . $menu_item['title'] . "</span></a></td>
</tr>";
break;
case 'bar':
echo "
<tr>
<td colspan=2 style=\"padding-top:5px; padding-bottom:5px;\">
<img src=\"http://echo4me.imagetong.com/gnuboard4/images/menu_sep_bar.gif\"></td>
</tr>";
break;
} // end of switch
} // end of foreach
echo "</table>";
}
?>
}
?>
<script language="javascript">
function openwin(url, w, h)
{
var cw = (screen.width - w) /2;
var ch = (screen.height - h) /2;
var new_win = window.open(url,'diorcafe_new_win','left='+cw+',top='+ch+',width='+w+',height='+h+',location=no, directories=no,resizable=yes,status=yes,toolbar=no,menubar=no, scrollbars=yes');
new_win.focus();
}
function openwin(url, w, h)
{
var cw = (screen.width - w) /2;
var ch = (screen.height - h) /2;
var new_win = window.open(url,'diorcafe_new_win','left='+cw+',top='+ch+',width='+w+',height='+h+',location=no, directories=no,resizable=yes,status=yes,toolbar=no,menubar=no, scrollbars=yes');
new_win.focus();
}
</script>
tabber.js
function tabberObj(argsObj)
{
var arg; /* name of an argument to override */
{
var arg; /* name of an argument to override */
/* Element for the main tabber div. If you supply this in argsObj,
then the init() method will be called.
*/
this.div = null;
then the init() method will be called.
*/
this.div = null;
/* Class of the main tabber div */
this.classMain = "tabber";
this.classMain = "tabber";
/* Rename classMain to classMainLive after tabifying
(so a different style can be applied)
*/
this.classMainLive = "tabberlive";
(so a different style can be applied)
*/
this.classMainLive = "tabberlive";
/* Class of each DIV that contains a tab */
this.classTab = "tabbertab";
this.classTab = "tabbertab";
/* Class to indicate which tab should be active on startup */
this.classTabDefault = "tabbertabdefault";
this.classTabDefault = "tabbertabdefault";
/* Class for the navigation UL */
this.classNav = "tabbernav";
this.classNav = "tabbernav";
/* When a tab is to be hidden, instead of setting display='none', we
set the class of the div to classTabHide. In your screen
stylesheet you should set classTabHide to display:none. In your
print stylesheet you should set display:block to ensure that all
the information is printed.
*/
this.classTabHide = "tabbertabhide";
set the class of the div to classTabHide. In your screen
stylesheet you should set classTabHide to display:none. In your
print stylesheet you should set display:block to ensure that all
the information is printed.
*/
this.classTabHide = "tabbertabhide";
/* Class to set the navigation LI when the tab is active, so you can
use a different style on the active tab.
*/
this.classNavActive = "tabberactive";
use a different style on the active tab.
*/
this.classNavActive = "tabberactive";
/* Elements that might contain the title for the tab, only used if a
title is not specified in the TITLE attribute of DIV classTab.
*/
this.titleElements = ['h2','h3','h4','h5','h6'];
title is not specified in the TITLE attribute of DIV classTab.
*/
this.titleElements = ['h2','h3','h4','h5','h6'];
/* Should we strip out the HTML from the innerHTML of the title elements?
This should usually be true.
*/
this.titleElementsStripHTML = true;
This should usually be true.
*/
this.titleElementsStripHTML = true;
/* If the user specified the tab names using a TITLE attribute on
the DIV, then the browser will display a tooltip whenever the
mouse is over the DIV. To prevent this tooltip, we can remove the
TITLE attribute after getting the tab name.
*/
this.removeTitle = true;
the DIV, then the browser will display a tooltip whenever the
mouse is over the DIV. To prevent this tooltip, we can remove the
TITLE attribute after getting the tab name.
*/
this.removeTitle = true;
/* If you want to add an id to each link set this to true */
this.addLinkId = false;
this.addLinkId = false;
/* If addIds==true, then you can set a format for the ids.
<tabberid> will be replaced with the id of the main tabber div.
<tabnumberzero> will be replaced with the tab number
(tab numbers starting at zero)
<tabnumberone> will be replaced with the tab number
(tab numbers starting at one)
<tabtitle> will be replaced by the tab title
(with all non-alphanumeric characters removed)
*/
this.linkIdFormat = '<tabberid>nav<tabnumberone>';
<tabberid> will be replaced with the id of the main tabber div.
<tabnumberzero> will be replaced with the tab number
(tab numbers starting at zero)
<tabnumberone> will be replaced with the tab number
(tab numbers starting at one)
<tabtitle> will be replaced by the tab title
(with all non-alphanumeric characters removed)
*/
this.linkIdFormat = '<tabberid>nav<tabnumberone>';
/* You can override the defaults listed above by passing in an object:
var mytab = new tabber({property:value,property:value});
*/
for (arg in argsObj) { this[arg] = argsObj[arg]; }
var mytab = new tabber({property:value,property:value});
*/
for (arg in argsObj) { this[arg] = argsObj[arg]; }
/* Create regular expressions for the class names; Note: if you
change the class names after a new object is created you must
also change these regular expressions.
*/
this.REclassMain = new RegExp('\\b' + this.classMain + '\\b', 'gi');
this.REclassMainLive = new RegExp('\\b' + this.classMainLive + '\\b', 'gi');
this.REclassTab = new RegExp('\\b' + this.classTab + '\\b', 'gi');
this.REclassTabDefault = new RegExp('\\b' + this.classTabDefault + '\\b', 'gi');
this.REclassTabHide = new RegExp('\\b' + this.classTabHide + '\\b', 'gi');
change the class names after a new object is created you must
also change these regular expressions.
*/
this.REclassMain = new RegExp('\\b' + this.classMain + '\\b', 'gi');
this.REclassMainLive = new RegExp('\\b' + this.classMainLive + '\\b', 'gi');
this.REclassTab = new RegExp('\\b' + this.classTab + '\\b', 'gi');
this.REclassTabDefault = new RegExp('\\b' + this.classTabDefault + '\\b', 'gi');
this.REclassTabHide = new RegExp('\\b' + this.classTabHide + '\\b', 'gi');
/* Array of objects holding info about each tab */
this.tabs = new Array();
this.tabs = new Array();
/* If the main tabber div was specified, call init() now */
if (this.div) {
if (this.div) {
this.init(this.div);
/* We don't need the main div anymore, and to prevent a memory leak
in IE, we must remove the circular reference between the div
and the tabber object. */
this.div = null;
}
}
in IE, we must remove the circular reference between the div
and the tabber object. */
this.div = null;
}
}
/*--------------------------------------------------
Methods for tabberObj
--------------------------------------------------*/
tabberObj.prototype.init = function(e)
{
/* Set up the tabber interface.
e = element (the main containing div)
Example:
init(document.getElementById('mytabberdiv'))
*/
init(document.getElementById('mytabberdiv'))
*/
var
childNodes, /* child nodes of the tabber div */
i, i2, /* loop indices */
t, /* object to store info about a single tab */
defaultTab=0, /* which tab to select by default */
DOM_ul, /* tabbernav list */
DOM_li, /* tabbernav list item */
DOM_a, /* tabbernav link */
aId, /* A unique id for DOM_a */
headingElement; /* searching for text to use in the tab */
childNodes, /* child nodes of the tabber div */
i, i2, /* loop indices */
t, /* object to store info about a single tab */
defaultTab=0, /* which tab to select by default */
DOM_ul, /* tabbernav list */
DOM_li, /* tabbernav list item */
DOM_a, /* tabbernav link */
aId, /* A unique id for DOM_a */
headingElement; /* searching for text to use in the tab */
/* Verify that the browser supports DOM scripting */
if (!document.getElementsByTagName) { return false; }
if (!document.getElementsByTagName) { return false; }
/* If the main DIV has an ID then save it. */
if (e.id) {
this.id = e.id;
}
if (e.id) {
this.id = e.id;
}
/* Clear the tabs array (but it should normally be empty) */
this.tabs.length = 0;
this.tabs.length = 0;
/* Loop through an array of all the child nodes within our tabber element. */
childNodes = e.childNodes;
for(i=0; i < childNodes.length; i++) {
childNodes = e.childNodes;
for(i=0; i < childNodes.length; i++) {
/* Find the nodes where class="tabbertab" */
if(childNodes[i].className &&
childNodes[i].className.match(this.REclassTab)) {
/* Create a new object to save info about this tab */
t = new Object();
/* Save a pointer to the div for this tab */
t.div = childNodes[i];
/* Add the new object to the array of tabs */
this.tabs[this.tabs.length] = t;
if(childNodes[i].className &&
childNodes[i].className.match(this.REclassTab)) {
/* Create a new object to save info about this tab */
t = new Object();
/* Save a pointer to the div for this tab */
t.div = childNodes[i];
/* Add the new object to the array of tabs */
this.tabs[this.tabs.length] = t;
/* If the class name contains classTabDefault,
then select this tab by default.
*/
if (childNodes[i].className.match(this.REclassTabDefault)) {
defaultTab = this.tabs.length-1;
}
}
}
then select this tab by default.
*/
if (childNodes[i].className.match(this.REclassTabDefault)) {
defaultTab = this.tabs.length-1;
}
}
}
/* Create a new UL list to hold the tab headings */
DOM_ul = document.createElement("ul");
DOM_ul.className = this.classNav;
/* Loop through each tab we found */
for (i=0; i < this.tabs.length; i++) {
DOM_ul = document.createElement("ul");
DOM_ul.className = this.classNav;
/* Loop through each tab we found */
for (i=0; i < this.tabs.length; i++) {
t = this.tabs[i];
/* Get the label to use for this tab:
From the title attribute on the DIV,
Or from one of the this.titleElements[] elements,
Or use an automatically generated number.
*/
t.headingText = t.div.title;
From the title attribute on the DIV,
Or from one of the this.titleElements[] elements,
Or use an automatically generated number.
*/
t.headingText = t.div.title;
/* Remove the title attribute to prevent a tooltip from appearing */
if (this.removeTitle) { t.div.title = ''; }
if (this.removeTitle) { t.div.title = ''; }
if (!t.headingText) {
/* Title was not defined in the title of the DIV,
So try to get the title from an element within the DIV.
Go through the list of elements in this.titleElements
(typically heading elements ['h2','h3','h4'])
*/
for (i2=0; i2<this.titleElements.length; i2++) {
headingElement = t.div.getElementsByTagName(this.titleElements[i2])[0];
if (headingElement) {
t.headingText = headingElement.innerHTML;
if (this.titleElementsStripHTML) {
t.headingText.replace(/<br>/gi," ");
t.headingText = t.headingText.replace(/<[^>]+>/g,"");
}
break;
}
}
}
So try to get the title from an element within the DIV.
Go through the list of elements in this.titleElements
(typically heading elements ['h2','h3','h4'])
*/
for (i2=0; i2<this.titleElements.length; i2++) {
headingElement = t.div.getElementsByTagName(this.titleElements[i2])[0];
if (headingElement) {
t.headingText = headingElement.innerHTML;
if (this.titleElementsStripHTML) {
t.headingText.replace(/<br>/gi," ");
t.headingText = t.headingText.replace(/<[^>]+>/g,"");
}
break;
}
}
}
if (!t.headingText) {
/* Title was not found (or is blank) so automatically generate a
number for the tab.
*/
t.headingText = i + 1;
}
/* Title was not found (or is blank) so automatically generate a
number for the tab.
*/
t.headingText = i + 1;
}
/* Create a list element for the tab */
DOM_li = document.createElement("li");
DOM_li = document.createElement("li");
/* Save a reference to this list item so we can later change it to
the "active" class */
t.li = DOM_li;
the "active" class */
t.li = DOM_li;
/* Create a link to activate the tab */
DOM_a = document.createElement("a");
DOM_a.appendChild(document.createTextNode(t.headingText));
DOM_a.href = "javascript:void(null);";
DOM_a.title = t.headingText;
DOM_a.onclick = this.navClick;
DOM_a = document.createElement("a");
DOM_a.appendChild(document.createTextNode(t.headingText));
DOM_a.href = "javascript:void(null);";
DOM_a.title = t.headingText;
DOM_a.onclick = this.navClick;
/* Add some properties to the link so we can identify which tab
was clicked. Later the navClick method will need this.
*/
DOM_a.tabber = this;
DOM_a.tabberIndex = i;
was clicked. Later the navClick method will need this.
*/
DOM_a.tabber = this;
DOM_a.tabberIndex = i;
/* Do we need to add an id to DOM_a? */
if (this.addLinkId && this.linkIdFormat) {
if (this.addLinkId && this.linkIdFormat) {
/* Determine the id name */
aId = this.linkIdFormat;
aId = aId.replace(/<tabberid>/gi, this.id);
aId = aId.replace(/<tabnumberzero>/gi, i);
aId = aId.replace(/<tabnumberone>/gi, i+1);
aId = aId.replace(/<tabtitle>/gi, t.headingText.replace(/[^a-zA-Z0-9\-]/gi, ''));
aId = this.linkIdFormat;
aId = aId.replace(/<tabberid>/gi, this.id);
aId = aId.replace(/<tabnumberzero>/gi, i);
aId = aId.replace(/<tabnumberone>/gi, i+1);
aId = aId.replace(/<tabtitle>/gi, t.headingText.replace(/[^a-zA-Z0-9\-]/gi, ''));
DOM_a.id = aId;
}
}
/* Add the link to the list element */
DOM_li.appendChild(DOM_a);
DOM_li.appendChild(DOM_a);
/* Add the list element to the list */
DOM_ul.appendChild(DOM_li);
}
DOM_ul.appendChild(DOM_li);
}
/* Add the UL list to the beginning of the tabber div */
e.insertBefore(DOM_ul, e.firstChild);
e.insertBefore(DOM_ul, e.firstChild);
/* Make the tabber div "live" so different CSS can be applied */
e.className = e.className.replace(this.REclassMain, this.classMainLive);
e.className = e.className.replace(this.REclassMain, this.classMainLive);
/* Activate the default tab, and do not call the onclick handler */
this.tabShow(defaultTab);
this.tabShow(defaultTab);
/* If the user specified an onLoad function, call it now. */
if (typeof this.onLoad == 'function') {
this.onLoad({tabber:this});
}
if (typeof this.onLoad == 'function') {
this.onLoad({tabber:this});
}
return this;
};
};
tabberObj.prototype.navClick = function(event)
{
/* This method should only be called by the onClick event of an <A>
element, in which case we will determine which tab was clicked by
examining a property that we previously attached to the <A>
element.
Since this was triggered from an onClick event, the variable
"this" refers to the <A> element that triggered the onClick
event (and not to the tabberObj).
"this" refers to the <A> element that triggered the onClick
event (and not to the tabberObj).
When tabberObj was initialized, we added some extra properties
to the <A> element, for the purpose of retrieving them now. Get
the tabberObj object, plus the tab number that was clicked.
*/
to the <A> element, for the purpose of retrieving them now. Get
the tabberObj object, plus the tab number that was clicked.
*/
var
rVal, /* Return value from the user onclick function */
a, /* element that triggered the onclick event */
self, /* the tabber object */
tabberIndex, /* index of the tab that triggered the event */
onClickArgs; /* args to send the onclick function */
rVal, /* Return value from the user onclick function */
a, /* element that triggered the onclick event */
self, /* the tabber object */
tabberIndex, /* index of the tab that triggered the event */
onClickArgs; /* args to send the onclick function */
a = this;
if (!a.tabber) { return false; }
if (!a.tabber) { return false; }
self = a.tabber;
tabberIndex = a.tabberIndex;
tabberIndex = a.tabberIndex;
/* Remove focus from the link because it looks ugly.
I don't know if this is a good idea...
*/
a.blur();
I don't know if this is a good idea...
*/
a.blur();
/* If the user specified an onClick function, call it now.
If the function returns false then do not continue.
*/
if (typeof self.onClick == 'function') {
If the function returns false then do not continue.
*/
if (typeof self.onClick == 'function') {
onClickArgs = {'tabber':self, 'index':tabberIndex, 'event':event};
/* IE uses a different way to access the event object */
if (!event) { onClickArgs.event = window.event; }
if (!event) { onClickArgs.event = window.event; }
rVal = self.onClick(onClickArgs);
if (rVal === false) { return false; }
}
if (rVal === false) { return false; }
}
self.tabShow(tabberIndex);
return false;
};
};
tabberObj.prototype.tabHideAll = function()
{
var i; /* counter */
/* Hide all tabs and make all navigation links inactive */
for (i = 0; i < this.tabs.length; i++) {
this.tabHide(i);
}
};
for (i = 0; i < this.tabs.length; i++) {
this.tabHide(i);
}
};
tabberObj.prototype.tabHide = function(tabberIndex)
{
var div;
if (!this.tabs[tabberIndex]) { return false; }
/* Hide a single tab and make its navigation link inactive */
div = this.tabs[tabberIndex].div;
div = this.tabs[tabberIndex].div;
/* Hide the tab contents by adding classTabHide to the div */
if (!div.className.match(this.REclassTabHide)) {
div.className += ' ' + this.classTabHide;
}
this.navClearActive(tabberIndex);
if (!div.className.match(this.REclassTabHide)) {
div.className += ' ' + this.classTabHide;
}
this.navClearActive(tabberIndex);
return this;
};
};
tabberObj.prototype.tabShow = function(tabberIndex)
{
/* Show the tabberIndex tab and hide all the other tabs */
var div;
if (!this.tabs[tabberIndex]) { return false; }
/* Hide all the tabs first */
this.tabHideAll();
this.tabHideAll();
/* Get the div that holds this tab */
div = this.tabs[tabberIndex].div;
div = this.tabs[tabberIndex].div;
/* Remove classTabHide from the div */
div.className = div.className.replace(this.REclassTabHide, '');
div.className = div.className.replace(this.REclassTabHide, '');
/* Mark this tab navigation link as "active" */
this.navSetActive(tabberIndex);
this.navSetActive(tabberIndex);
/* If the user specified an onTabDisplay function, call it now. */
if (typeof this.onTabDisplay == 'function') {
this.onTabDisplay({'tabber':this, 'index':tabberIndex});
}
if (typeof this.onTabDisplay == 'function') {
this.onTabDisplay({'tabber':this, 'index':tabberIndex});
}
return this;
};
};
tabberObj.prototype.navSetActive = function(tabberIndex)
{
/* Note: this method does *not* enforce the rule
that only one nav item can be active at a time.
*/
{
/* Note: this method does *not* enforce the rule
that only one nav item can be active at a time.
*/
/* Set classNavActive for the navigation list item */
this.tabs[tabberIndex].li.className = this.classNavActive;
this.tabs[tabberIndex].li.className = this.classNavActive;
return this;
};
};
tabberObj.prototype.navClearActive = function(tabberIndex)
{
/* Note: this method does *not* enforce the rule
that one nav should always be active.
*/
/* Remove classNavActive from the navigation list item */
this.tabs[tabberIndex].li.className = '';
this.tabs[tabberIndex].li.className = '';
return this;
};
};
/*==================================================*/
function tabberAutomatic(tabberArgs)
{
/* This function finds all DIV elements in the document where
class=tabber.classMain, then converts them to use the tabber
interface.
tabberArgs = an object to send to "new tabber()"
*/
var
tempObj, /* Temporary tabber object */
divs, /* Array of all divs on the page */
i; /* Loop index */
*/
var
tempObj, /* Temporary tabber object */
divs, /* Array of all divs on the page */
i; /* Loop index */
if (!tabberArgs) { tabberArgs = {}; }
/* Create a tabber object so we can get the value of classMain */
tempObj = new tabberObj(tabberArgs);
tempObj = new tabberObj(tabberArgs);
/* Find all DIV elements in the document that have class=tabber */
/* First get an array of all DIV elements and loop through them */
divs = document.getElementsByTagName("div");
for (i=0; i < divs.length; i++) {
/* Is this DIV the correct class? */
if (divs[i].className &&
divs[i].className.match(tempObj.REclassMain)) {
/* Now tabify the DIV */
tabberArgs.div = divs[i];
divs[i].tabber = new tabberObj(tabberArgs);
}
}
return this;
}
divs = document.getElementsByTagName("div");
for (i=0; i < divs.length; i++) {
/* Is this DIV the correct class? */
if (divs[i].className &&
divs[i].className.match(tempObj.REclassMain)) {
/* Now tabify the DIV */
tabberArgs.div = divs[i];
divs[i].tabber = new tabberObj(tabberArgs);
}
}
return this;
}
/*==================================================*/
function tabberAutomaticOnLoad(tabberArgs)
{
/* This function adds tabberAutomatic to the window.onload event,
so it will run after the document has finished loading.
*/
var oldOnLoad;
if (!tabberArgs) { tabberArgs = {}; }
/* Taken from: http://simon.incutio.com/archive/2004/05/26/addLoadEvent */
oldOnLoad = window.onload;
if (typeof window.onload != 'function') {
window.onload = function() {
tabberAutomatic(tabberArgs);
};
} else {
window.onload = function() {
oldOnLoad();
tabberAutomatic(tabberArgs);
};
}
}
if (typeof window.onload != 'function') {
window.onload = function() {
tabberAutomatic(tabberArgs);
};
} else {
window.onload = function() {
oldOnLoad();
tabberAutomatic(tabberArgs);
};
}
}
/*==================================================*/
/* Run tabberAutomaticOnload() unless the "manualStartup" option was specified */
if (typeof tabberOptions == 'undefined') {
tabberAutomaticOnLoad();
} else {
if (!tabberOptions['manualStartup']) {
tabberAutomaticOnLoad(tabberOptions);
}
tabberAutomaticOnLoad(tabberOptions);
}
}
어디를 봐도 div를 죽이는 것은 없는거 같은데 ㅠ..ㅠ ... 도와주샴 ...
댓글 전체
아무 문제 없는거 같은데요.
저의 환경은 ex7.0, XP sp2 입니다.
저는 단지 읽어 들이는게 늣은 현상 뿐이 없네요.. 스크립트가 아래 쪽에 있는거 같기도 하고. 특이사항은 없습니다.
~,.~ 참고만하세요. 혼자 동문서답이라면 죄송합니다.ㅠ,.ㅠ
저의 환경은 ex7.0, XP sp2 입니다.
저는 단지 읽어 들이는게 늣은 현상 뿐이 없네요.. 스크립트가 아래 쪽에 있는거 같기도 하고. 특이사항은 없습니다.
~,.~ 참고만하세요. 혼자 동문서답이라면 죄송합니다.ㅠ,.ㅠ
애러가 발생하는... 공지사항 게시판을 눌러보세요.
메뉴를 누르는 순간 tab 메뉴부분이 싹~ 없어져 버립니다. ㅠ..ㅠ...
왜??? 왜??? 없어지는지 너무 궁금해요. ㅠ..ㅠ
메뉴를 누르는 순간 tab 메뉴부분이 싹~ 없어져 버립니다. ㅠ..ㅠ...
왜??? 왜??? 없어지는지 너무 궁금해요. ㅠ..ㅠ
http://www.pitt.co.kr/?menu_id=image_all&url=image_all.php
여기에 접근 해보았습니다. 다소 늣게 출력이 되어짐
그리고 공지사항은 없는 게시판이라는 에러가 나오는데 말씀하신되로 레이어 메뉴가 사라진 상태로 페이지가 나오네요.
개인적인 생각에는 에러 메시지가 호출되었을때 레이어 호출보다 alert 호출이 빨라서 출력이 안되는 문제 같습니다.
여기에 접근 해보았습니다. 다소 늣게 출력이 되어짐
그리고 공지사항은 없는 게시판이라는 에러가 나오는데 말씀하신되로 레이어 메뉴가 사라진 상태로 페이지가 나오네요.
개인적인 생각에는 에러 메시지가 호출되었을때 레이어 호출보다 alert 호출이 빨라서 출력이 안되는 문제 같습니다.
alert 호출이 나오던 아니던 div 영역 전체가 없어져버리고, 다시 나타는게 문제 값아요. ㅠ..ㅠ
왜??? 그 내용을 눌렀다고 전체 영역이 싹~ 없어지는거죠??? 내일 다른 소스로 해봐야 하나...
왜??? 그 내용을 눌렀다고 전체 영역이 싹~ 없어지는거죠??? 내일 다른 소스로 해봐야 하나...
확인은 안했으나 당연한 것 아닌가요.
탭을 누르면 원하는 모습처럼 보이겠지만 링크버튼을 누르면 페이지가 새로 로딩되어 보여지는 것과 같기때문으로 생각이 되는군요.
높이가 존재하거나 고정으로 되어 있다면 좀 이야기는 달라질 수도 있을 듯하긴하군요.
탭을 누르면 원하는 모습처럼 보이겠지만 링크버튼을 누르면 페이지가 새로 로딩되어 보여지는 것과 같기때문으로 생각이 되는군요.
높이가 존재하거나 고정으로 되어 있다면 좀 이야기는 달라질 수도 있을 듯하긴하군요.
가운데 내용이 나오는 부분은 iframe 입니다. 링크 버튼을 누르면 전체 페이지가 다 움직이는 것이 아니라
가운데 iframe에 해당 게시판만 loading하게 되는 것이랍니다. ㅠ..ㅠ...
가운데 iframe에 해당 게시판만 loading하게 되는 것이랍니다. ㅠ..ㅠ...
지금 제가 보기에는 아이프레임에 타겟이 넘어가는 방식보다 전체페이지에 self 타겟을 준 것처럼 보입니다.
링크에 타겟 지정도 되어 있지 않으니 그렇게 보이는 것이 당연하겠지만 서도요.
아이프레임에 탓겟을 줘다면 익스플로러의 주소창의 주소는 변화가 없어야 정상입니다.
즉 링크탭박스에 탭버튼은 탭만 변화지만 링크를 눌렀을 때는 아이프레임에 타겟을 준 것이 아니기에 페이지 전체가 다시 로딩되는 결과를 얻는 것으로 여겨지는군요.
아이프레임에 타겟을 줄려면 링크에 target="inner1"가 들어가야 할 것 같습니다만...
아니면 <base target="inner1">을 헤드에 명시해야 할 것같습니다만...단순 링크만 있는 것이 아니라면 신중해야할 둣 합니다.
링크에 타겟 지정도 되어 있지 않으니 그렇게 보이는 것이 당연하겠지만 서도요.
아이프레임에 탓겟을 줘다면 익스플로러의 주소창의 주소는 변화가 없어야 정상입니다.
즉 링크탭박스에 탭버튼은 탭만 변화지만 링크를 눌렀을 때는 아이프레임에 타겟을 준 것이 아니기에 페이지 전체가 다시 로딩되는 결과를 얻는 것으로 여겨지는군요.
아이프레임에 타겟을 줄려면 링크에 target="inner1"가 들어가야 할 것 같습니다만...
아니면 <base target="inner1">을 헤드에 명시해야 할 것같습니다만...단순 링크만 있는 것이 아니라면 신중해야할 둣 합니다.
그리고 게시판만 아이프레임에 보이게 할 경우 보드 설정에서 head.php tail.php를 불러왔다면 없에야 할 듯합니다.
안 그렇다면 아이프레임으로 게시판이 열릴 경우 링크탭부분등이 또 불러질 것으로 사료됩니다.
안 그렇다면 아이프레임으로 게시판이 열릴 경우 링크탭부분등이 또 불러질 것으로 사료됩니다.
오랜만에 코드를 자세히 봤습니다. 지적하신 사항들이 맞네요 ㅠ..ㅠ
제가 개발한 부분이 아니라... 설명만 듣고 그렇다 믿었는데... 에휴...
다시 찬찬히 코드를 둘러봐야 할 것 같아요. 감사합니다.
제가 개발한 부분이 아니라... 설명만 듣고 그렇다 믿었는데... 에휴...
다시 찬찬히 코드를 둘러봐야 할 것 같아요. 감사합니다.
요근래에 정말 그누보드 질문답변게시판의 질문자의 입장과 답변자의 입장을 느끼게 해주네요...이런모습이 당연한데..점점...질문답변 게시판이 아니라... 난 모르닌깐 해줘 게시판이되버리니..ㅎㅎ 내가 답변을 너무 성의 없게 하는건가...후.....
첨에 아주 간단한 조언이라도 받을려구 얼마나 노력했는데 그 한마디 조언..정말 황금이었는데... 좀더 자세히 말해주세요..정말 기운빠지는 소리 인거 같아요...ㅠ,.ㅠ
답변에 관련 없는글을 올리네...ㄷㄷㄷ 불당님 해결 꼭 하시구요 오늘도 홧팅
첨에 아주 간단한 조언이라도 받을려구 얼마나 노력했는데 그 한마디 조언..정말 황금이었는데... 좀더 자세히 말해주세요..정말 기운빠지는 소리 인거 같아요...ㅠ,.ㅠ
답변에 관련 없는글을 올리네...ㄷㄷㄷ 불당님 해결 꼭 하시구요 오늘도 홧팅