How to window.open with a toolbar in Google Chrome?(如何在 Google Chrome 中使用工具栏打开 window.open?)
问题描述
以下 javascript 在 Firefox、Safari、IE 和 Google Chrome 中打开一个弹出窗口:
The following javascript opens a pop-up in Firefox, Safari, IE, and Google Chrome:
window.open("http://google.com", "foo", "toolbar=yes,location=yes,menubar=yes")
但是,在 Google Chrome 中,工具栏(带有通常的前进和后退按钮等)不会出现在弹出窗口中.(在 Windows 和 Mac 上测试.)
However, in Google Chrome the toolbar (with the usual forward and back buttons, etc.) does not appear on the popped-up window. (Tested on both Windows and Mac.)
我该如何解决这个问题?我希望用户能够使用他们最熟悉的工具向前和向后导航.
How can I fix this? I would like the user to be able to navigate forward and back using the tools with which they are most familiar.
推荐答案
不幸的是,Chrome 在使用 window.open 时只支持一小部分窗口功能.如果您认为这是一个错误或问题,您可以将其提交到 [http://crbug.com].
Unfortunately Chrome only supports a small set of window features when using window.open. If you believe that this is a bug or an issue you can file it at [http://crbug.com].
如果您只使用 window.open(url) ,那么它将在同一个窗口中打开一个新标签页,其中包含您想要的按钮.
If you just use window.open(url) then it will open a new tab in the same window with the buttons you desire.
这篇关于如何在 Google Chrome 中使用工具栏打开 window.open?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Google Chrome 中使用工具栏打开 window.open?
基础教程推荐
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01