if문 문의드립니다.
본문
버튼1 | 버튼2 | 버튼3 | 버튼4
<?php echo latest('SKINNAME','$TableName',10,0);?>
클릭하는 버튼에 따라서 불러오는 게시판을 바꿀 수 있을까요?
$TableName = $button_id
답변 5
<button type="button" onclick="ajax_latest('button_id1')">버튼1</button>
<button type="button" onclick="ajax_latest('button_id2')">버튼2</button>
<button type="button" onclick="ajax_latest('button_id3')">버튼3</button>
<button type="button" onclick="ajax_latest('button_id4')">버튼4</button>
<div id="blatest">
</div>
<script type="text/javascript">
<!--
functon ajax_latest(tableName){
$.ajax({
type: "GET",
url: g5_url +"/ajax_latest.php",
data:{"bo_table":"tableName"} ,
success: function(data) {
jQuery("#blatest").html(data);
}
});
}
//-->
</script>
....
ajax_latest.php (그누보드 루트에)
<?php
include_once('./_common.php');
echo latest('SKINNAME', $bo_table, 6, 24);
?>
if문보다는 그냥 퍼블리싱으로 처리하셔도될거같은데요
탭안에 불러올 최신글만 처리한다면..
해당 부분은 onlymilk47님 처럼 ajax로 처리하셔야 할듯 합니다.
ajax로 처리하셔도 되고요.
아니면 해당 페이지 처음부분에 자바스크립트로 해당 동작 하게 구현한뒤에
form submit해서 같은 페이지를 새로 로드해서 처리하는 방식도 가능합니다.
JS로 구현하셔서 클릭시 특정탭이 active (active 제외 display:none) 되게 하시면 됩니다.