window.open 弹出窗口,没有工具栏和 UI 部分
我正在尝试制作一个弹出窗口,它是一个新的浏览器窗口,这样我可以更改选项卡并且仍然有这个弹出窗口。 我希望它具有最小的用户界面(工具栏、菜单栏、地址栏等)。 我尝试了类似的方法:
window.open('test.html', 'popup', 'left=100,top=100,width=320,height=320,popup=1,toolbar=0,scrollbars=0,status=0,location=0')
但它仍然显示用户界面。有没有办法在没有用户界面的情况下创建新窗口?
I am trying to make a popup that is a new browser window, so I can change tabs and still have this popup.
I want it to be with a minimal UI (toolbars, menubars, addressbar, etc).
I tried something like that:
window.open('test.html', 'popup', 'left=100,top=100,width=320,height=320,popup=1,toolbar=0,scrollbars=0,status=0,location=0')
But it still show the UI. Is there any way to create new window without the UI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用 Opera 测试了你的代码和我的代码,它没有改变任何东西。但在 Safari 和 Chrome 上,我设法获得了最小的 UI。这是我使用的:
I tested your code and mine with Opera and it didn't change anything. But on Safari and Chrome I managed to get a minimal UI. Here's what I used: