使用提交按钮创建链接

发布于 2024-10-17 09:04:14 字数 30 浏览 1 评论 0原文

我可以使用提交按钮将一个页面链接到另一页面吗?

Can I link one page to another page using submit button?

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

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

发布评论

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

评论(2

救赎№ 2024-10-24 09:04:14

它向用户发送了所有错误的信号,但是:

<form action="some-uri"><div><input type="submit"></div></form>

It sends all the wrong signals to the user, but:

<form action="some-uri"><div><input type="submit"></div></form>
左耳近心 2024-10-24 09:04:14

使用提交表单的问题是下一页会认为它必须处理二进制请求,而使用上传表单则无法做到这一点。

因此,您最好使用图像按钮(可以使其看起来像提交按钮)或使用 JavaScript...

在新窗口中打开:

onClick="window.open('page.html');"

在同一窗口中打开:

onClick="document.location.href = ('page.html');"

The problem with using a submit form is that the next page will think that it has to deal with a binary request, which you can't do if using an upload form.

So you are better using a image button (can make it look like a submit button) or using JavaScript...

Open in a new window:

onClick="window.open('page.html');"

Open in the same window:

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