我正在使用以下代码来打开某些尺寸的窗口。 现在需要使其可滚动。怎么做?我尝试浏览,但是找不到正确的浏览器。
window.open("xxx","","width=1200","height=60");
答案 0 :(得分:1)
您可以添加滚动条:
window.open("xxx","","width=1200, height=60, scrollbars=1");
答案 1 :(得分:0)
尝试一下:
window.open("xxx","","width=1200","height=60",scrollbars=1);
在此弹出窗口中使用的页面(“ xxx”)中,添加以下CSS:
yourcontainer {
overflow-y: scroll;
}