重複の可能性:
Javascriptを使用してページをリダイレクトする方法は?
ASP.Netのresponse.redirectのように、あるページから別のページにリダイレクトするために使用したいHTMLページがあります。JavaScriptを使わなければならないと思います。
重複の可能性:
Javascriptを使用してページをリダイレクトする方法は?
ASP.Netのresponse.redirectのように、あるページから別のページにリダイレクトするために使用したいHTMLページがあります。JavaScriptを使わなければならないと思います。
<input type="button" onclick="document.location.href = 'http://google.com'" />
またはJSなし
<form action="/contact.html">
<input type="submit">
</form>
JavaScriptでは、次のことができます。
window.location="http://someplace.com";
またはHTMLボタンでこれを行います:
<input type="button" onclick="document.location='http://someplace.com'" />
onclick="document.location.href = 'http://google.com'"
また
onclick="window.location = 'http://google.com'"
もちろん、googleを目的のアドレスに置き換えて、タグに追加すると正常に機能するはずです。
Or you could use a link styled as a button. If the only thing that button does is redirects to other page, then you should use a link, it would be semantically better.