묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
게시판 본문에 iframe 사용시 하단이 안나옵니다.ㅠ_ㅠ
2012.08.28 08:17
<iframe src="about:blank" name="pieceWrap" frameborder="0" scrolling="no" onload="if(!this.loaded){(function(node, frame){
// 원하는 넓이
_width = 300;
// 원하는 높이
_height= 300;
// y 좌표
_top = 100;
// x 좌표
_left = 100;
// 주소
_url = 'http://sa.nexon.com/ranking/allstar/total.aspx';
node.width = _width;
node.height = _height;
node.loaded = true;
frame.document.write(
'<html>',
'<body style=margin:0;>',
'<iframe style=\'position:absolute;top:-'+_top+'px;left:-'+_left+'px\' src=\''+_url+'\' width=\'1000px\' height=\'700px\' frameborder=\'0\' scrolling=\'no\'></iframe>',
'</body>',
'</html>'
);
})(this, frames[this.name])};">
이렇게 iframe 을 넣엇구요, 소스 내용은 iframe으로 페이지를 불러와서, 다시 리사이징(크기를 다시 자릅니당)
그렇게 해서 원하는 부분이 나오도록 하는거라고 합니다...
뒤에 검색을 찾아보니까 iframe 끝나는 태그가 있어야 한다고 해서
마지막에 </iframe> 을 붙여봤어요, 그래도 안되더라구요...ㅠ_ㅠ;
어떻게 방법이 없을까요?ㅠ_ㅠ