|
我加了一个alert出的高度是为了让你理解,实际中你可以去掉。你可以直接下载附件,其内容如下:
iframe.html
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
- <script language="JavaScript">
- $(function(){
- alert($("body").height());
- $(window.parent.document).find("#iframeid").height($("body").height());
- });
- </script>
- </head>
- <body>
- haha<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe<br />hehe
- </body>
- </html>
复制代码 index.html
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- </head>
- <body>
- <iframe frameborder="no" width="100%" marginheight="0" marginwidth="0" border="0" src="iframe.html" id="iframeid"></iframe>
- <hr />
- xixi
- </body>
- </html>
复制代码
|
|