2

重複の可能性:
Javascriptを使用してページをリダイレクトする方法は?

ASP.Netのresponse.redirectのように、あるページから別のページにリダイレクトするために使用したいHTMLページがあります。JavaScriptを使わなければならないと思います。

4

4 に答える 4

6
<input type="button" onclick="document.location.href = 'http://google.com'" />

またはJSなし

<form action="/contact.html">
    <input type="submit">
</form>
于 2012-12-16T20:22:49.163 に答える
3

JavaScriptでは、次のことができます。

window.location="http://someplace.com";

またはHTMLボタンでこれを行います:

<input type="button" onclick="document.location='http://someplace.com'" />
于 2012-12-16T20:22:39.080 に答える
1
onclick="document.location.href = 'http://google.com'"

また

onclick="window.location = 'http://google.com'"

もちろん、googleを目的のアドレスに置き換えて、タグに追加すると正常に機能するはずです。

于 2012-12-16T20:23:35.920 に答える
0

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.

于 2012-12-16T20:23:21.210 に答える