我使用window.open()创建一个没有滚动条的窗口
window.open("...url...", "...blah...", "width=650, height=350, resizable=yes, scrollbars=no")
如何将此“scrollbars = no”重置为“yes”以在弹出窗口中启用滚动条?
我尝试使用css“overflow:scroll”但不适合我。
-
修改
我已经为规格添加了宽度和高度,但它仍无效。
当我搜索DOM树时,我发现有“scrollbars.visable = false”。 我尝试使用Firebug直接将其更改为true,滚动条可见且工作正常。
但是,当我使用javascript更改它时,它不起作用。
<script>
window.scrollbars=true; // this is not work
</script>
答案 0 :(得分:0)
指定scrollbars=1
并指定width
和height
,这样滚动条会在内容大于指定的窗口宽度和高度时显示。
window.open("...url...", "...blah...", "scrollbars=1,width=600,height=600")