如何使用 webbrowser 模块在现有浏览器窗口中打开 URL?

发布于 2024-12-07 18:27:36 字数 303 浏览 0 评论 0原文

我正在使用 webbrowser Python 模块 在 Internet Explorer 中打开图像。具体来说,我使用的是 webbrowser.open('C:...', new=0) 命令。

但是,即使我说 new=0 我的 URL 始终会在新的浏览器窗口中打开。

我该怎么做才能在已打开的浏览器窗口中打开我的链接?

感谢您的帮助。

I’m using the webbrowser Python module to open images in Internet Explorer. Specifically, I’m using the webbrowser.open('C:...', new=0) command.

However, even though I say new=0 my URL is always opened in a new browser window.

What can I do so my link is opened in an already-open browser window?

Thank you for your help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

世俗缘 2024-12-14 18:27:36

尝试打开新标签。

webbrowser.open_new_tab(url)

Open url in a new page (“tab”) of the default browser, if possible, otherwise equivalent to open_new().

来自文档: http://docs.python.org/library/webbrowser .html

Try open_new_tab.

webbrowser.open_new_tab(url)

Open url in a new page (“tab”) of the default browser, if possible, otherwise equivalent to open_new().

From the docs: http://docs.python.org/library/webbrowser.html

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