使iframe滚动条消失

时间:2011-07-11 16:56:31

标签: javascript iframe

我正在使用javascript更改iframe的属性:

var iFrame = window.top.document.getElementById('window_content');
    iFrame.setAttribute("height","63");
    iFrame.setAttribute("scrolling","no");
    iFrame.style.overflow="hidden";
    iFrame.style.height = "63px";

它会根据我的需要改变大小,但滚动条不会消失。这可能吗? html输出看起来像我期望的那样:

<iframe width="650" height="63" frameborder="0" scrolling="no" src="http://www.google.com/" id="window_content" name="window_content" style="overflow: hidden; height: 63px; width: 650px;"> </iframe>

为什么无法识别滚动属性?

2 个答案:

答案 0 :(得分:1)

对我来说似乎工作得非常好:

http://jsfiddle.net/maniator/XSfzg/

这是最新的谷歌浏览器。

答案 1 :(得分:0)

试试这个:

iframe.style.overflowX = "hidden";
iframe.style.overflowY = "hidden";