- <script type="text/javascript">
- function SetCwinHeight(iframeObj){
- if (document.getElementById){
- if (iframeObj){
- if (iframeObj.contentDocument && iframeObj.contentDocument.body.offsetHeight){
- iframeObj.height = iframeObj.contentDocument.body.offsetHeight;
- } else if (document.frames[iframeObj.name].document && document.frames
- [iframeObj.name].document.body.scrollHeight){ iframeObj.height = document.frames
- [iframeObj.name].document.body.scrollHeight;
- }
- }
- }
- }
- </script>
- <iframe name="frameContent" src="*" frameborder="0" width="100%" onload="SetCwinHeight
- (this)"></iframe>
注:标记*号的地方填入iframe页面的地址。需要注意的是,src地址必须是在同一网站下,否则会出现“权限被禁止”的错误。
作者: Sjolzy
--EOF--