禁用表单窗口调整大小?

发布于 2024-12-10 19:06:55 字数 330 浏览 0 评论 0原文

这是我的表单:

<form name="htmlform" method="post" action="php/html_form_send.php" onsubmit="window.open('','my_form_target', 'width=500,height=260', true); this.target='my_form_target';" >

现在他们在窗口上打开了,我可以禁用窗口调整大小,例如 resize=noresize=none 或类似的东西?另外如果有的话我会把它放在哪里?

Here is my form:

<form name="htmlform" method="post" action="php/html_form_send.php" onsubmit="window.open('','my_form_target', 'width=500,height=260', true); this.target='my_form_target';" >

Now is their anyway on the window open I can disable the window from being re sized like resize=no or resize=none or something like that? Also if there is where would I place it?

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

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

发布评论

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

评论(2

以为你会在 2024-12-17 19:06:55

没有语法允许您禁用调整大小,如果有的话,大多数浏览器(我希望)会忽略它

编辑:
其他答案指出 window.open() 方法确实存在语法。但是它似乎不适用于我测试过的任何浏览器

There is no syntax for allowing you to disable resizing, and if there were, most browsers (I hope) would ignore it

EDIT:
other answers have pointed out that the syntax does indeed exist for the window.open() method. However it does not appear to work in any browser I have tested

迷迭香的记忆 2024-12-17 19:06:55
window.open ("page_url","windowName","resizable=0");
window.open ("page_url","windowName","resizable=0");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文