채택완료

모바일 그누보드 3차메뉴 출력 하는법

2018-11-30 (금) 16:10:33 4,146
Copy
<div id="gnb" class="hd_div">

<span style="position: absolute; font-size: 1.5em; font-weight: bold; color: #46658a; top: 21px; left: 19px;">MENU</span>

<button type="button" id="gnb_close" class="hd_closer"><span class="sound_only">메뉴 </span>닫기</button>

 

<ul id="gnb_1dul">

<?php

$sql = " select *

from {$g5['menu_table']}

where me_mobile_use = '1'

and length(me_code) = '2'

order by me_order, me_id ";

$result = sql_query($sql, false);

 

for($i=0; $row=sql_fetch_array($result); $i++) {

?>

<li class="gnb_1dli">

<a href="<?php echo $row['me_link']; ?>" target="_<?php echo $row['me_target']; ?>" class="gnb_1da"><?php echo $row['me_name'] ?></a>

<?php

$sql2 = " select *

from {$g5['menu_table']}

where me_mobile_use = '1'

and length(me_code) = '4'

and substring(me_code, 1, 2) = '{$row['me_code']}'

order by me_order, me_id ";

$result2 = sql_query($sql2);

 

for ($k=0; $row2=sql_fetch_array($result2); $k++) {

if($k == 0)

echo '<button type="button" class="btn_gnb_op">하위분류</button><ul class="gnb_2dul">'.PHP_EOL;

?>

<li class="gnb_2dli"><a href="<?php echo $row2['me_link']; ?>" target="_<?php echo $row2['me_target']; ?>" class="gnb_2da"><span></span><?php echo $row2['me_name'] ?></a></li>

<?php

}

 

if($k > 0)

echo '</ul>'.PHP_EOL;

?>

</li>

<?php

}

 

if ($i == 0) { ?>

<li id="gnb_empty">메뉴 준비 중입니다.<?php if ($is_admin) { ?> <br><a href="<?php echo G5_ADMIN_URL; ?>/menu_list.php">관리자모드 &gt; 환경설정 &gt; 메뉴설정</a>에서 설정하세요.<?php } ?></li>

<?php } ?>

</ul>

 

<div id="hd_sch" style="display:none">

<h2>사이트 내 전체검색</h2>

<form name="fsearchbox" action="<?php echo G5_BBS_URL ?>/search.php" onsubmit="return fsearchbox_submit(this);" method="get">

<input type="hidden" name="sfl" value="wr_subject||wr_content">

<input type="hidden" name="sop" value="and">

<input type="text" name="stx" id="sch_stx" placeholder="검색어(필수)" required maxlength="20">

<button type="submit" value="검색" id="sch_submit"><i class="fa fa-search" aria-hidden="true"></i><span class="sound_only">검색</span></button>

</form>

 

<script>

function fsearchbox_submit(f)

{

if (f.stx.value.length < 2) {

alert("검색어는 두글자 이상 입력하십시오.");

f.stx.select();

f.stx.focus();

return false;

}

 

// 검색에 많은 부하가 걸리는 경우 이 주석을 제거하세요.

var cnt = 0;

for (var i=0; i<f.stx.value.length; i++) {

if (f.stx.value.charAt(i) == ' ')

cnt++;

}

 

if (cnt > 1) {

alert("빠른 검색을 위하여 검색어에 공백은 한개만 입력할 수 있습니다.");

f.stx.select();

f.stx.focus();

return false;

}

 

return true;

}

</script>

</div>

</div>

모바일에서 2차메뉴까지 불러오는 기본소스 입니다..

3차메뉴 까지 출력하고싶은데 잘안되네요 ㅠㅠ 도와주세요..

|

답변 1개

답변을 작성하려면 로그인이 필요합니다.