ifrmae 자동 리사이즈

· 17년 전 · 3466 · 4
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js">
</script>

<iframe class="resize" src="/" frameborder="0" scrolling="no"></iframe>

<script type="text/javascript">
$(function(){
  $("iframe.resize").load(function(){
    var frame = $(this).get(0);
    var doc = (frame.contentDocument) ? frame.contentDocument : frame.contentWindow.document;
    $(this).height(doc.body.scrollHeight);
    //$(this).width(doc.body.scrollWidth); // 너비도 자동적용하려면 주석 제거
  });
});
</script>
[이 게시물은 관리자님에 의해 2011-10-31 16:55:28 jQuery에서 이동 됨]
|

댓글 4개

한때 이 것 때문에 무진장 고생했었는데
잘 되나요?
브라우저 호환은 문제없나요? ^^;

함 해봐야겠네요 ㅎㅎ 암튼 감사합니다.
// 약간 문제가 있어서 수정 했습니다.
// height 속성이 없는 iframe에 대해서만 높이 자동 지정
// jquery.livequery.js 사용

$.iresize = function() {
try {
$("iframe[height=]")
.livequery("load", function() {
var doc = $(this).contents().find($.browser.msie ? 'body#' : 'body');
$(this).height(doc.height());
});
} catch (e) {}
}

$.iresize();
이렇게 하면 페이지 네이 있는 iframe 전체가 다 수정되는거 아닌가요?
name 과 options 를 지정 하심이..^^

가로와 세로를 선택적으로 사용가능하게말이죠..^^

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$.iresize = function(name, options) {
var settings = {width:true, height:true}
$.extend(settings, options);
try {
$(name)
.livequery("load", function() {
var doc = $(this).contents().find($.browser.msie ? 'body#' : 'body');
if(settings.width) $(this).width(doc.width());
if(settings.height) $(this).height(doc.height());
});
} catch (e) {}
}

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
$.iresize("element",{width:false}); // height 만 맞춤
$.iresize("element",{height:false}); // width 만 맞춤
$.iresize("element"); // 둘다 맞춤
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
이런식이 된다면 이렇게 하는것이 좋을듯 해 보입니다..^^
ifrmae - > iframe 이 맞죠 .?
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
16년 전 조회 1,988
16년 전 조회 2,326
16년 전 조회 2,854
16년 전 조회 2,558
17년 전 조회 2,989
17년 전 조회 3,235
17년 전 조회 3,253
17년 전 조회 2,045
17년 전 조회 1,773
17년 전 조회 1,637
17년 전 조회 1,967
17년 전 조회 1,451
17년 전 조회 2,203
17년 전 조회 1,979
17년 전 조회 1,827
17년 전 조회 1,532
17년 전 조회 2,414
17년 전 조회 3,475
17년 전 조회 2,374
17년 전 조회 1,978
17년 전 조회 1,752
17년 전 조회 2,275
17년 전 조회 4,963
17년 전 조회 1,685
17년 전 조회 2,425
17년 전 조회 2,375
17년 전 조회 2,657
17년 전 조회 2,374
17년 전 조회 4,693
17년 전 조회 3,188
17년 전 조회 3,106
17년 전 조회 1,819
17년 전 조회 1,474
17년 전 조회 4,204
17년 전 조회 1,876
17년 전 조회 1,879
17년 전 조회 2,357
17년 전 조회 2,122
17년 전 조회 1,758
17년 전 조회 4,177
17년 전 조회 1,996
17년 전 조회 3,344
17년 전 조회 3,267
17년 전 조회 1,263
17년 전 조회 2,075
17년 전 조회 1,838
17년 전 조회 2,085
17년 전 조회 2,899
17년 전 조회 3,262
17년 전 조회 3,467
17년 전 조회 3,577
17년 전 조회 1,671
17년 전 조회 1,669
17년 전 조회 2,472
17년 전 조회 2,223
17년 전 조회 2,516
17년 전 조회 3,052
17년 전 조회 3,533
17년 전 조회 2,613
17년 전 조회 1,889
17년 전 조회 3,468
17년 전 조회 3,314
17년 전 조회 3,279
17년 전 조회 4,162
17년 전 조회 2,797
17년 전 조회 2,664
17년 전 조회 2,915
17년 전 조회 3,152
17년 전 조회 2,859
17년 전 조회 1,701
17년 전 조회 2,113
17년 전 조회 1,714
17년 전 조회 2,166
17년 전 조회 2,780
17년 전 조회 8,950
17년 전 조회 3,388
17년 전 조회 4,458
17년 전 조회 2,223
17년 전 조회 3,896
17년 전 조회 1,790
17년 전 조회 1,610
17년 전 조회 2,552
17년 전 조회 1,546
17년 전 조회 1,851
17년 전 조회 1,700
17년 전 조회 2,769
17년 전 조회 1,733
17년 전 조회 1,327
17년 전 조회 1,474
17년 전 조회 3,360
17년 전 조회 2,400
17년 전 조회 2,194
17년 전 조회 1,443
17년 전 조회 2,666
17년 전 조회 1,405
17년 전 조회 1,355
17년 전 조회 1,613
17년 전 조회 2,978
17년 전 조회 2,639
17년 전 조회 2,693