How to redirect from one page to another in HTML site using HTML button
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
How to make a page redirect using Javascript?
我有一个HTML页面要用于从一个页面重定向到另一个页面,如ASP.NET中的response.redirect。我想我必须使用javascript。
1 | <input type="button" onclick="document.location.href = 'http://google.com'" /> |
或没有js P / < >
1 2 3 | <form action="/contact.html"> <input type="submit"> </form> |
在javascript你可以做: P / < >
1 | window.location="http://someplace.com"; |
HTML按钮或在这样做: P / < >
1 | <input type="button" onclick="document.location='http://someplace.com'" /> |
1 | onclick="document.location.href = 'http://google.com'" |
或 P / < >
1 | onclick="window.location = 'http://google.com'" |
我的工作是好的,如果你给它进入你的成员,replacing谷歌与你的desired地址,当然。 P / < >
或者你可以用链接styled号的按钮。如果唯一的按钮,并可以redirects到其他页,那么你应该使用的链接,它会semantically更好。 P / < >