如何在javascript中打开没有标题栏的新窗口
如何打开没有标题栏的新窗口。
How to open new window without titlebar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何打开没有标题栏的新窗口。
How to open new window without titlebar.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
你不能(幸运的是),至少在标准 Web 安全上下文中的常见浏览器中不能。
You can't (thankfully), at least not in common browsers in a standard web security context.
每个由 Javascript 打开的窗口都会有一个标题栏。您只能控制滚动条、状态栏和工具栏是否出现在打开的窗口中。
要获得无头“弹出”效果,请查看像 LightBox 这样的库,它可以做这些效果。您实际上并没有根据用户代理打开一个新窗口,但行为是相似的。
Every window opened by Javascript will have a titlebar. You only have control over whether scrollbars, statusbars, and toolbars are present in the opened window.
To get a headless "pop-up" effect, look into a library like LightBox that can do these sort of effects. You're not actually opening a new window according to the user-agent, but the behaviour is similar.