Javascript関数を使用してユーザーを別のページに移動しようとしています:
<input type="button" name="confirm" value="nextpage" onClick="message()">
そして私のJavaScript:
function message() {
ConfirmStatus = confirm("Install a Virus?");
if (ConfirmStatus == true) {
//Send user to another page
}
}
ユーザーを別の特定のページに送る方法を知っている人はいますか?
あなたのコードはめちゃくちゃになりました、しかし私がそれを正しく理解したならば、あなたは以下を使うことができます:
_location.href = 'http://www.google.com';
or
location.href = 'myrelativepage.php';
_
幸運を!
しかし、私はあなたに言わなければなりません、
他のオプションは、コードでこれを行うことです:
PHP:header('Location: index.php');
C#:Response.Redirect("yourpage.aspx");
Java:response.sendRedirect("http://www.google.com");
注意:
私は信じている window.location.href = "newpage.html";
働くでしょう。
メタリフレッシュタグを使用してリダイレクトすることもできます。
<meta http-equiv="refresh" content="2;url=http://other-domain.com">
サイトにリダイレクトされますhttp://other-domain.com
2秒後。