iframe 애플리케이션은 매우 일반적이며 두 가지 공통 요구 사항이 있습니다.
1. iframe 효과를 얻으려면 스크롤 막대를 가져오면 많은 공간을 절약할 수 있습니다.
2. 페이지를 삽입하여 프레임 연결을 구현합니다.
iframe을 사용하는 것이 불편하다면 다음과 같은 해결 방법을 사용할 수 있습니다.
Css 레이아웃을 사용하여 첫 번째 요구 사항을 구현하면 한 페이지를 절약하고 효율성을 높일 수 있습니다.
두 번째 요구 사항은 xmlhttp를 사용하여 원격으로 얻을 수 있습니다.
A. iframe을 직접 시뮬레이션
레이어를 컨테이너로 사용
#content { Overflow:auto; width:600px;}
효과 시연 소스 코드:
본문을 컨테이너로 사용
html { Overflow:hidden; height:100%; background:#fff; border:0;}
* html { padding:100px 0 0 100px;}
body { Overflow:scroll ; 배경:#f00 ; 위치:절대; 왼쪽:100px; 오른쪽:0;}
* 높이: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;}
效果演示代码: