我正在使用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>
为什么无法识别滚动属性?
答案 0 :(得分:1)
答案 1 :(得分:0)
试试这个:
iframe.style.overflowX = "hidden";
iframe.style.overflowY = "hidden";