작성일 : 14-09-18 22:46
|
[GNU] iframe 로 그누보드 게시판 삽입
|
|
|
글쓴이 :
조형래
 조회 : 4,824
|
<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>
<div><iframe src="bbs/write.php?bo_table=recruit" width="100%" height="800px" frameborder="0" allowTransparency="true" scrolling="no" onload="autoIframe(this);"></iframe></div>
|
|