window.open 弹出窗口,没有工具栏和 UI 部分

发布于 2025-01-10 21:45:08 字数 287 浏览 0 评论 0原文

我正在尝试制作一个弹出窗口,它是一个新的浏览器窗口,这样我可以更改选项卡并且仍然有这个弹出窗口。 我希望它具有最小的用户界面(工具栏、菜单栏、地址栏等)。 我尝试了类似的方法:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沙沙粒小 2025-01-17 21:45:08

我用 Opera 测试了你的代码和我的代码,它没有改变任何东西。但在 Safari 和 Chrome 上,我设法获得了最小的 UI。这是我使用的:

<!DOCTYPE html>
<html>
<body>

    <p>Click the button to open a new window with some specifications.</p>

    <button onclick="myFunction()">Try it</button>

    <script>
        function myFunction() {
            window.open("https://www.google.com", "_blank", "toolbar=no, location=no, directories=no,status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=600, height=600");
        }
    </script>
</body>
</html>

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:

<!DOCTYPE html>
<html>
<body>

    <p>Click the button to open a new window with some specifications.</p>

    <button onclick="myFunction()">Try it</button>

    <script>
        function myFunction() {
            window.open("https://www.google.com", "_blank", "toolbar=no, location=no, directories=no,status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=yes, width=600, height=600");
        }
    </script>
</body>
</html>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文