iframe 애플리케이션은 매우 일반적이며 두 가지 공통 요구 사항이 있습니다.
1. iframe 효과를 얻으려면 스크롤 막대를 가져오면 많은 공간을 절약할 수 있습니다.
2. 페이지를 삽입하여 프레임 연결을 구현합니다.
iframe을 사용하는 것이 불편하다면 다음과 같은 해결 방법을 사용할 수 있습니다.
CSS 레이아웃을 사용하여 첫 번째 요구 사항을 구현하면 한 페이지를 절약하고 효율성을 높일 수 있습니다.
두 번째 요구 사항은 xmlhttp를 사용하여 원격으로 얻을 수 있습니다.
A. iframe 직접 시뮬레이션
레이어를 컨테이너로 사용
#content { Overflow:auto; height:200px; width:600px; background:#f00;}
본체 사용 컨테이너 만들기
html { 오버플로: 숨김:100% ; 배경:#fff; 테두리:0;}
* html { 패딩:100px 0 100px;}
body { 오버플로:스크롤; 0; 위치:절대:100px; 하단:0; 오른쪽:0;}
* html 본문 { 높이:100%;}
B. 绝对定位模拟iframe
滚动条在外边
html { overflow:hidden; border:0; height:100%; max-height:100%;}
body { overflow:hidden; margin:0; height:100%; max-height:100%; position:relative;}
#head { position:absolute; top:0; right:15px; width:100%; height:100px; background:#f00; z-index:2;}
#foot { position:absolute; bottom:0; right:15px; width:100%; background:#f00; height:50px;z-index:2;}
#content { height:100%; position:relative; z-index:1; overflow:auto;}
效果演示源代码:
滚动条在里边
html { height:100%; max-height:100%; border:0; overflow:hidden;}
* html { padding:100px 0 50px 0;}
body { height:100%; max-height:100%; margin:0; overflow:hidden;}
#content { position:absolute; top:100px; bottom:50px; left:0; right:0; z-index:3; width:100%; overflow:auto;}
* html #content { top:100px; bottom:0; height:100%;}
#head { position:absolute; margin:0; top:0; left:0; width:100%; height:100px; background:#f00; z-index:5;}
#foot { position:absolute; margin:0; bottom:0; left:0; width:100%; height:50px; z-index:5; background:#f00;}
在IE6.0和FF1.5环境下测试通过