需要在多个iframe中设置div的高度

时间:2014-07-22 04:57:03

标签: javascript jquery iframe

我有在线文档的布局。需要删除该布局中的滚动条。

$("body").css("overflow", "hidden");使用此查询修复了我的滚动条问题。

但需要在iframe.i中设置div高度,具有

的格式
<iframe id="content-frame" width="100%" frameborder="0" onload="iframeLoaded()" name="content_frame" src="default.aspx">
 <frameset framespacing="0" border="0" frameborder="no" rows="0,*">
   <frame id="first" scrolling="no" src="" name="ltop">
   <frame id="bottom" src="index.aspx" frameborder="no" name="lbottom"> 
   <iframe id="TopicContent" class="TopicContent" src="html/50942ac4-eca6-4a44-0f1f-bd6c3b6de856.htm" name="TopicContent" style="width: 1033px;">   
      <div id="mainSection" style="overflow: auto; height: 685px; width: 1033px;">
      </div>
   </iframe>
 </frameset>
</iframe>

如何设置“mainSection”div的高度?在jquery。

0 个答案:

没有答案