如何在 Opera 和 Chrome 中移动浏览器窗口并调整其大小?
我正在寻找一种调整浏览器窗口大小和移动浏览器窗口的方法,我发现了这些:self.resizeTo(w, h)
和 self.moveTo(x, y)
- 这似乎工作完美,但仅在 Firefox 和 IE 中(使用 IE8 进行测试,我不知道以前的版本是如何工作的)。 如何在 Opera 和 Chrome 中强制执行相同的行为(调整大小和移动)?在这些浏览器中,上述解决方案根本不起作用。只是没有发生任何事情,错误控制台中也没有出现任何内容。
I was looking for a way to resize and move the browser's window and I've found these:self.resizeTo(w, h)
and self.moveTo(x, y)
- this seems to work perfectly, but only in Firefox and IE (tested with IE8, I don't know how it works in the previous versions).
How can I force the same behavior (resizing and moving) in Opera and Chrome? In these browsers the above solution does not work at all. Just nothing happens and nothing appears in the error console.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Opera 和 Chrome 中,您可以使用
window.resizeTo (w,h);
但它不会影响最大化的选项卡(因此您只能移动弹出窗口并调整其大小)。In Opera and Chrome you can use
window.resizeTo(w,h);
but it won't affect maximized tabs (so you can only move and resize popups).