브라우저 높이와 너비를 결정하기 위해 아무것도 작성할 필요가 없는 두 가지 매우 간단한 방법이 있습니다.
아래 두 가지 방법 중 하나를 선택하시면 됩니다. 하나는 iframe과 동일한 페이지에 배치되고, 다른 하나는 test.html 페이지에 배치됩니다.
엉뚱한 곳에 놓지 않도록 주의하세요.
iframe 코드에는 ID를 주의해서 적어주세요. ID가 없으면 찾을 수 없습니다
방법 1:
//참고: 다음 코드는 iframe과 동일한 페이지에 배치되며
이라고 합니다.
$("#main").load(함수(){
var mainheight = $(this).contents().find("body").height() 30;
$(this).height(mainheight);
})
방법 2:
//참고: 다음 코드는
를 호출하기 위해 test.html에 배치됩니다.
$(window.parent.document).find("#main").load(function(){
var main = $(window.parent.document).find("#main");
var thisheight = $(document).height() 30;
main.height(thisheight);
});
프로젝트 작업 과정에서 iframe을 사용해야 하는데, iframe에는 기본적으로 높이가 있습니다. 기본 높이를 초과하는 콘텐츠는 숨겨지고, 기본 높이보다 작은 콘텐츠는 기본 높이를 사용하게 됩니다. 콘텐츠의 높이로 답변을 검색하는 과정에서 iframe 높이 적응을 제어하는 방법을 알아냈습니다
iframe 적응형 높이 자체는 페이지가 로드된 후 높이를 다시 계산하는 매우 간단한 방법입니다.
코드는 다음과 같습니다.
//공개 방법: 모든 데이터가 표시되도록 iframe의 높이를 설정합니다.
//함수 SetPageHeight() {
// var iframe = getUrlParam('ifname');
// var myiframe = window.parent.document.getElementById(iframe);
// iframeLoaded(myiframe);
//}
var iframeLoaded = 함수(iframe) {
If (iframe.src.length > 0) {
If (!iframe.readyState || iframe.readyState == "완료") {
var bHeight =
iframe.contentWindow.document.body.scrollHeight;
var dHeight =
iframe.contentWindow.document.documentElement.scrollHeight;
var height = Math.max(bHeight, dHeight);
iframe.height = 높이;
}
}
}
//페이징 중 iframe 높이 재설정, 수정 후: iframe.name = iframe.id
var reSetIframeHeight = function()
{
{
을 시도해 보세요
var oIframe = parent.document.getElementById(window.name);
oIframe.height = 100;
iframeLoaded(oIframe);
}
캐치(err)
{
시도해 보세요 {
parent.document.getElementById(window.name).height = 1000;
} 잡기(err2) { }
}
}
reSetIframeHeight() 메서드를 호출합니다.