问题
Can I link one page to another page using submit button?
回答1:
It sends all the wrong signals to the user, but:
<form action="some-uri"><div><input type="submit"></div></form>
回答2:
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');"
来源:https://stackoverflow.com/questions/5013576/make-link-using-submit-button