如何修复IE的iframe滚动问题?

时间:2014-11-15 08:22:17

标签: javascript html iframe

我从word press通过java脚本函数获取内容到i框架,你可以看到下面的代码..我正在为IE获取一个额外的滚动条我想删除滚动。![在此处输入图像描述] [ 1]

<iframe id="content Frame" name="content Frame" 
        onload="apply Style Sheet(this); scroll Page();" 
        src="home.html" frame border="0" seamless="" 
        style="overflow: hidden; height: 729px;">
</iframe>

1 个答案:

答案 0 :(得分:0)

添加scrolling =&#34; no&#34;到iframe。

页面上的iFrame标记:

<iframe id="contentFrame" 
        name="contentFrame" 
        onload="applyStyleSheet(this); scrollPage();" 
        src="home.html" frameborder="0" 
        seamless="" 
        style="overflow: hidden;" scrolling="no">
</iframe>