ifrmae 자동 리사이즈

· 17년 전 · 3663 · 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 이 맞죠 .?
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 2,207
17년 전 조회 2,559
17년 전 조회 3,079
17년 전 조회 2,773
17년 전 조회 3,206
17년 전 조회 3,452
17년 전 조회 3,478
17년 전 조회 2,282
17년 전 조회 1,995
17년 전 조회 1,875
17년 전 조회 2,201
17년 전 조회 1,671
17년 전 조회 2,427
17년 전 조회 2,209
17년 전 조회 2,051
17년 전 조회 1,744
17년 전 조회 2,625
17년 전 조회 3,701
17년 전 조회 2,583
17년 전 조회 2,200
17년 전 조회 1,964
17년 전 조회 2,498
17년 전 조회 5,190
17년 전 조회 1,893
17년 전 조회 2,632
17년 전 조회 2,593
17년 전 조회 2,874
17년 전 조회 2,589
17년 전 조회 4,925
17년 전 조회 3,420
17년 전 조회 3,326
17년 전 조회 2,046
17년 전 조회 1,709
17년 전 조회 4,439
17년 전 조회 2,103
17년 전 조회 2,104
17년 전 조회 2,597
17년 전 조회 2,342
17년 전 조회 1,977
17년 전 조회 4,386
17년 전 조회 2,209
17년 전 조회 3,568
17년 전 조회 3,488
17년 전 조회 1,481
17년 전 조회 2,261
17년 전 조회 2,041
17년 전 조회 2,295
17년 전 조회 3,097
17년 전 조회 3,457
17년 전 조회 3,664
17년 전 조회 3,780
17년 전 조회 1,875
17년 전 조회 1,876
17년 전 조회 2,682
17년 전 조회 2,428
17년 전 조회 2,712
17년 전 조회 3,260
17년 전 조회 3,723
17년 전 조회 2,802
17년 전 조회 2,078
17년 전 조회 3,644
17년 전 조회 3,513
17년 전 조회 3,472
17년 전 조회 4,352
17년 전 조회 3,002
17년 전 조회 2,846
17년 전 조회 3,112
17년 전 조회 3,327
17년 전 조회 3,054
17년 전 조회 1,916
17년 전 조회 2,309
17년 전 조회 1,964
17년 전 조회 2,364
17년 전 조회 2,979
17년 전 조회 9,139
17년 전 조회 3,587
17년 전 조회 4,643
17년 전 조회 2,411
17년 전 조회 4,069
17년 전 조회 1,970
17년 전 조회 1,808
17년 전 조회 2,744
17년 전 조회 1,728
17년 전 조회 2,057
17년 전 조회 1,917
17년 전 조회 2,968
17년 전 조회 1,931
17년 전 조회 1,512
17년 전 조회 1,658
17년 전 조회 3,584
17년 전 조회 2,605
17년 전 조회 2,400
17년 전 조회 1,657
17년 전 조회 2,886
17년 전 조회 1,598
17년 전 조회 1,575
17년 전 조회 1,836
17년 전 조회 3,175
17년 전 조회 2,841
17년 전 조회 2,934