1

お問い合わせフォームを送信した後、ウェブサイトをホームページにリダイレクトして、ありがとうページに移動しようとしています。ありがとうページの後にリダイレクトする以外は、うまく機能しています。ありがとうページを削除すると機能します。行の後に of ステートメントが必要であり、次にヘッダー (www.google.com) 型のものが必要であることはわかっていますが、if ステートメントに何を入力すればよいかわかりません。

お問い合わせフォームのファイルを下のドロップボックス リンクにアップロードしました。前もって感謝します。

https://www.dropbox.com/sh/2zrci8b04989u3d/gEc3u6rPK4

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
<head>
      <meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
      <title>Thank you!</title>
      <link rel="STYLESHEET" type="text/css" href="contact.css">
</head>
<body>

<script>
window.onload=function() {
  setTimeout(function() {
    location.replace("index.php");
  },3000); // wait 3 seconds
}
</script>
<h2>Thank you...</h2>
<a href="index.php">click here if you are not redirected in a few seconds</a>

</body>
</html>
4

3 に答える 3

2

スマホだからページ見ないでサンキューページにこれ入れて

<script>
window.onload=function() {
  setTimeout(function() {
    location.replace("somepage.php");
  },3000); // wait 3 seconds
}
</script>
<h2>Thank you...</h2>
<a href="somepage.php">click here if you are not redirected in a few seconds</a>
于 2013-10-25T03:42:31.657 に答える
0

ユーザーが JavaScript を無効にしている場合は、次のようにしてみてください。

<?php

header( "Refresh: 5 url=http://yourdomain.com/" );

?>
<!DOCTYPE html>
<html>

<!-- HTML CODE GOES HERE -->

</html>

関数の数字 5 はheader()、ページがユーザーを URL にリダイレクトするまでの秒数です。header関数は、html および/または php 出力の前に来る必要があります

于 2013-10-25T04:06:10.423 に答える
0

これには 3 つの方法があります。

1 - HTML リダイレクト:

<!doctype html>
<head>
<META http-equiv="refresh" content="0;URL=http://www.example.com">
</head><body></body></html>

2 - PHP ヘッダーのリダイレクト:

<?php
header('Location: http://www.example.com');
?>
<!doctype html><html><head></head><body></body></html>

3 - Javascript リダイレクト:

<!doctype html><html><head>
<script>
window.location.assign("http://www.example.com");
</script>
</head><body></body></html>
于 2013-10-25T04:35:20.653 に答える