작성일 : 14-09-24 01:25
|
[GNU] 그누보드 admin iframe 으로 만들기
|
|
|
글쓴이 :
조형래
 조회 : 4,718
|
<section>
<center>
<h2>게시판 바로가기</h2>
<div class="tbl_head01" style="width:50%">
<table>
<tbody>
<tr>
<td class="td_mbname"><center><a href="index.php?choise_number=notice">공지사항</a></center></td>
<td class="td_mbname"><center><a href="index.php?choise_number=oneone"">튜터지원</a></center></td>
</tr>
</tbody>
</table>
</div>
</center>
</section>
<br />
<script type="text/javascript">
function autoIframe(frameobj){
var padding_bottom = 125; //아이프레임 문서와 iframe 크기와의 차이. 단위: px
try{
frame = frameobj;
objToResize = (frame.style) ? frame.style : frame;
objToResize.height='1px';
innerDoc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
objToResize.height = innerDoc.body.scrollHeight + padding_bottom + 'px';
}
catch(err){}
}
</script>
<?php
$choise_number = $_GET['choise_number'];
if ($choise_number=="notice"){
?>
<center>
<div class="tbl_head01 tbl_wrap" style="width:80%;">
<iframe src="<?php echo G5_BBS_URL ?>/board.php?bo_table=notice" width="100%" height="800px" frameborder="0" allowTransparency="true" scrolling="no" onload="autoIframe(this);"></iframe>
</div>
</center>
<?php
};
?>
<?
if ($choise_number=="oneone"){
?>
<center>
<div class="tbl_head01 tbl_wrap" style="width:80%;">
<iframe src="<?php echo G5_BBS_URL ?>/board.php?bo_table=toturappl" width="100%" height="800px" frameborder="0" allowTransparency="true" scrolling="no" onload="autoIframe(this);"></iframe>
</div>
</center>
<?php
};
?>
|
|