1

私はここから始めています:

ここに画像の説明を入力

そのコードで:

<!DOCTYPE html>
<html>
<head><title>Bank application</title>
<link rel="stylesheet"
      href="./css/styles.css"
      type="text/css"/>
</head>
<body>
<table class="title">
  <tr><th>Web Bank application</th></tr>
</table>

<br/>
<fieldset>
  <legend>Login Page - please enter your Username and Password</legend>
  <form action="loginPage"> 
    Username: <input type="text" name="username"><br>
    Password : <input type="text" name="password"><br>
    <input type="submit" value="Login">
  </form>
</fieldset>

<br/>
<br/>
<br/>

<fieldset>
  <legend>Registration</legend>
  <form action="register"> 
    First name: <input type="text" name="firstName"><br>
    Last name : <input type="text" name="lastName"><br>
    Address   : <input type="text" name="address"><br>
    ID-number : <input type="text" name="idnumber"><br>
    User-Name : <input type="text" name="userName"><br>
    Password  : <input type="text" name="password"><br>
    <input type="submit" value="Register">
  </form>
</fieldset>

<br/>
<br/><br/><br/><br/><br/><br/>
</body></html>

あるページから別のページに移動すると、ここに到達します。

ここに画像の説明を入力

そのコードで:

<!DOCTYPE html>
<html>
<head><title>Authentication failed - a problem has occurred!</title>
<link rel="stylesheet"
      href="./css/styles.css"
      type="text/css"/>
</head>
<body>
<h1>Sorry , but you are not registered to our bank!</h1>

<fieldset>
  <legend>Please press here to continue</legend>
  <form action="goingBack"> 
    <input type="submit" value="Press here">
  </form>
</fieldset>

</body></html>

index.html そして、プログラムの開始時に最初に表示されるページ (上の最初の写真)に戻りたいと思います。

どうやってやるの ?どうすれば に戻ることができindex.htmlますか?

よろしく

4

2 に答える 2

2

最後の HTML に前のページへのリンクを追加するだけです。

<!DOCTYPE html>
<html>
<head><title>Authentication failed - a problem has occurred!</title>
<link rel="stylesheet"
      href="./css/styles.css"
      type="text/css"/>
</head>
<body>
<h1>Sorry , but you are not registered to our bank!</h1>

<fieldset>
  <legend>Please press here to continue</legend>
  <form action="goingBack"> 
    <input type="submit" value="Press here">
  </form>
</fieldset>

 <a href="index.jsp">Go Back</a> <!-- add this -->

</body></html>
于 2012-08-07T08:51:19.507 に答える
1

必要なのはjavascriptだけです。/index.html5秒後にリダイレクトするには:

setTimeout('window.location='index.html';', 5000);

setTimeout()は、指定された時間が経過した後に何かをトリガーするようにタイマーを設定するjavascript関数です。window.location現在のページのURLを変更できるようにする変数です(したがって、再作成します)。

于 2012-08-07T08:48:08.460 に答える