我不希望弹出窗口可调整大小

发布于 2024-12-17 10:07:07 字数 363 浏览 0 评论 0原文

我有一个弹出窗口,单击按钮后会出现。我不希望弹出窗口可以调整大小。我尝试在 css resize:noneressized:none 中使用,但这并不适用于所有浏览器。

是否有一个可以使用的 css 元素,以便弹出窗口不能在所有浏览器中调整大小,或者是否有很多不同的可调整大小相关的 css 元素,以便我可以使用它们,以便最终所有弹出窗口都不能在所有浏览器中调整大小?

我知道在 window.open 函数中将 css 元素放在哪里,我只是想知道其他 css 方法可以使弹出窗口对于所有浏览器都无法调整大小

浏览器使用(所有最新浏览器):IE,Firefox,Google Chrome,野生动物园和歌剧

I have a popup window which appears after clicking on a button. I don't want the pop up window though to be resizeable. I tried using in css resize:none and resizable:none but this does not work for all browsers.

Is there a css element that can be used so that pop window can not resizable in all browsers, or is there a lot of different ressizeable related css elements so that I can use them so eventually all pop up windows are not resizable in all broswers?

I know where to put the css elements, in the window.open function, I just want to know other css ways that can make pop up windows not resizable for all browsers

Browsers using (all latest browsers): IE, Firefox, Google Chrome, safari and Opera

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

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

发布评论

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

评论(3

最美不过初阳 2024-12-24 10:07:07

您无法使用 CSS 执行此操作 - 您需要将 ressized 参数传递给您的 window.open() 函数。如果您使用带有 target 属性的 anchor,则需要改用 JavaScript。

JS 示例

window.open ("http://URL","mywin","menubar=1,resizable=0,width=350,height=250");

JS & HTML 示例

<a href="#"
  onclick="window.open ('http://URL','mywin','resizable=0,width=350,height=250')">Open</a>

其他资源

查看 MDN 上的 window.open 文档:https://developer.mozilla.org/en/DOM/window.open

根据 MDN,Firefox 将不支持 resizing 属性:

调整大小

如果此功能设置为 yes,则新的辅助窗口
将可调整大小。注意:从 1.4 版本开始,基于 Mozilla
浏览器在状态的右端有一个调整大小的窗口
栏,这确保用户可以调整浏览器窗口的大小,即使
网络作者要求该辅助窗口不可调整大小。在
在这种情况下,窗口标题栏中的最大化/恢复图标将是
禁用,窗口的边框不允许调整大小,但窗口
仍然可以通过状态栏中的手柄调整大小。

开始
在 Firefox 3 中,辅助窗口始终可以调整大小(错误 177838

You can't do this with CSS - you need to pass the resizable parameter to your window.open() function. If you're using an anchor with the target attribute, you need to use JavaScript instead.

JS Example

window.open ("http://URL","mywin","menubar=1,resizable=0,width=350,height=250");

JS & HTML Example

<a href="#"
  onclick="window.open ('http://URL','mywin','resizable=0,width=350,height=250')">Open</a>

Additional Resources

Take a look at the window.open docs on MDN: https://developer.mozilla.org/en/DOM/window.open

According to MDN, Firefox will not support the resizable attribute:

resizable

If this feature is set to yes, the new secondary window
will be resizable. Note: Starting with version 1.4, Mozilla-based
browsers have a window resizing grippy at the right end of the status
bar, this ensures that users can resize the browser window even if the
web author requested this secondary window to be non-resizable. In
such case, the maximize/restore icon in the window's titlebar will be
disabled and the window's borders won't allow resizing but the window
will still be resizable via that grippy in the status bar.

Starting
with Firefox 3, secondary windows are always resizable ( bug 177838 )

路还长,别太狂 2024-12-24 10:07:07

火狐浏览器不支持这个。

看看这里:

我们如何禁用调整大小Firefox 中的新弹出窗口?

此外,使其不可调整大小是一个坏主意。如果您的用户有视觉障碍并设置了大字体怎么办?

Firefox doesn't support this.

have a look here:

how can we disable resizing of new popup window in firefox?

futher more, it's a bad idea to make it not-resizeable. what if your users are visually impaired have have there settings to have large fonts?

寄意 2024-12-24 10:07:07

迟到总比不到好。得到这个工作:

window.addEventListener('load', () => {
  const popup = window;
  console.log(popup);
  popup.addEventListener("resize", () => {
    popup.resizeTo(306, 512);
  })
});

Better late than never. Got this working:

window.addEventListener('load', () => {
  const popup = window;
  console.log(popup);
  popup.addEventListener("resize", () => {
    popup.resizeTo(306, 512);
  })
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文