2012-05-04 8 views
0

は灰色の背景でページの中央に表示されますので、私はそのようにそれを行っている:クリック

 <style type="text/css"> 
     #cover5{position:absolute;top:0px;left:0px;overflow:hidden;display:none;width:100%;height:100%;background-color:gray;text-align:center} 
    #warning{top: 150px;margin:auto;position:relative;width:600px;height:fit-content;background-color:white;color:black;padding:10px; zIndex:20; border: 5px solid #003366;} 
     </style 
     <div id="cover5" onclick="javascript:cover5();"> 
       <div id="warning" onclick="javascript:cover5();"> 
        <?php include 'SignIn.php'; ?> 
       </div> 
      </div> 
<script> 
function cover5() 
      { 

       var cover=document.getElementById('cover5'); 

       if(vis) 
       { 
        vis=0; 
        cover.style.display='block'; 
       } 
       else 
       { 
        vis=1; 
        cover.style.display='none'; 
       } 
      } 
</script> 

これはSignIn.php

<form id='login' action='SignIn.php' method='post' accept-charset='UTF-8' onsubmit="return valid()"> 
<fieldset > 
<legend>SignIn</legend> 
<input type='hidden' name='submitted' id='submitted' value='1'/> 
<label for='username' >Email:</label> 
<input type='text' name='email' id='username' maxlength="50" /> <br /> 
<label for='password' >Password:</label> 
<input type='password' name='password' id='password' maxlength="50" /> <br /> 
<input type='submit' name='Submit' value='Login' /> <br /> 
<a href='resetPassword1.php'> Forgot/Reset Password? Click Here</a> 
</fieldset> 
</form> 

問題のコードは使用が上のクリックしたときに/パスワードのリセット忘れたということでしょうか?または間違ったデータを入力すると、すべての新しいウィンドウで開く、私はiframeを使用してdivの代わりに使用すると、正常にホームページが同じiframeで開くので、誰も問題を解決する方法を知っている?リンクの内側に長い質問:)

答えて

0

ため 申し訳ありませんがそれは別のブラウザで試して動作しない場合はそう

<a href="resetPassword1.php" target="_self">Forgot/Reset Password? Click Here</a> 

target="_self"を設定してみてください。ブラウザーには、デフォルト設定があり、面倒なことがあります。別の可能性のある問題は、新しいウィンドウにリンクを送信するサイトのどこかのJavascriptかもしれません。

0

あなたがあなたのリンクにこれを追加する必要があります。

target='_self' 

ので、それは次のようになります。

<a href='resetPassword1.php' target='_self'> Forgot/Reset Password? Click Here</a> 

あなたも一緒にプレイすることができます他の人が存在し、新しいウィンドウで開きたいです:

target='_blank' 

が、これは

を役に立てば幸い
関連する問題