AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
[TOC] ## 代码 >注:如果不加这段JS代码的话,iframe显示的会不完整! ## HTML ``` <!--main/stat--> <div class="main-content"> <div class="page-content" id="content"> <iframe src="{:url('Main/index')}" style="width:100%;height: 100%;" frameborder="0"></iframe> </div> </div> <!--main/end--> ``` ### JS ``` <script> //重置iframe容器的高度 var headerHeight; $(function () { content = $("#content"); headerHeight = 48; content.height($(window).height() - headerHeight); $(window).resize(function () { content.height($(window).height() - headerHeight); }); }) </script> ``` 如图所示: ![mark](http://qiniu.newthink.cc/blog/20171024-150404011.png) ![mark](http://qiniu.newthink.cc/blog/20171024-150437949.png) ![mark](http://qiniu.newthink.cc/blog/20171024-150445068.png)