繁体   English   中英

Document.Open()不起作用

[英]Document.Open() is not work

因此,我有一个按钮,如果该用户的用户名和密码正确,它将通知您,然后将其重定向到另一个页面。 第一件事有效,但不会将您重定向到页面。

这是网页的代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Siur</title>
<script type="text/javascript">
///////////////////////////Login System///////////////////////////
function getCookie(){
  var whole, username, password, splitting, actual,user, pass;
  whole = document.cookie;
  whole = whole.split(';');
  username = whole[0];
  password = whole[1];
  actual = password.split('=');
  user = actual[0];
  pass = actual[1];
  alert(user + password);
}

function setCookie(c_name,value,exdays){
  var c_value=value + "; 
  pass="+document.getElementById('passwordText').value;
  document.cookie="=" + value + "; 
  pass="+document.getElementById('passwordText').value;
  alert(document.cookie);
  getCookie();
}

function url(url){
  document.open(url);
}

function checkCookie(){
  var whole, username, password, splitting, actual,user, pass;
  whole = document.cookie;
  whole = whole.split(';');
  username = whole[0];
  password = whole[1];
  actual = password.split('=');
  user = actual[0];
  pass = actual[1];
  if (document.getElementById('usernameText').value !=null &&
      document.getElementById('usernameText').value!="" &&
      document.getElementById('passwordText').value == pass) {
    alert("Welcome again " + user);
    document.open('search_webpage.html');
  }
  else{
    alert('Incorrect username or password.');
  }
}
//////////////////////////////End of Login system////////////////////////////////////
</script>
</head>

<body>
<table width=100% height=30 background="nav.png" border="0">
  <tr>
    <td >
        <form id="form1" name="form1" method="post" action="">
          <label for="searchBox"></label>
          IN-DEV 0.1

        </form>
    </td>
  </tr>
</table>
<img src="logo.png" width="206" height="147" />
  <p>-Where everything is at your finger tips-</p>
  <p>
    <label for="usernameText"><label>Username: </label></label>
    <input type="text" name="usernameText" id="usernameText" />
  </p>
  <p>
    <label for="passwordText"><label>Password: </label></label>
    <input type="password" name="passwordText" id="passwordText" />
  </p>
</center>
<center>

<input type="submit" name="create" id="create" onclick="checkCookie()" value="Login" /> 
<input type="submit" name="check" id="check" onclick="setCookie(
 document.getElementById('usernameText').value,
 document.getElementById('passwordText').value,365);" value="Register" />
</p>
  <p><a href="http://blacklist.eff.org/">Fight SOPA now!</a></p>

  <p><!--[if lt IE 7]> 
  <div style=' clear: both; height: 59px; padding:0 0 0 15px; position: relative;'> <a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode">
  <img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." />
  </a></div> <![endif]--><footer><font color="#CCCCCC">Copyright 2012, All Rights Reserved.</font></footer></p>
</center>
</body>
</html>

document.open()不用于转到新的URL。 使用document.write()时会调用它。 它将清除当前页面。

您要使用window.location = 'http://example.com';

首先,使用通常也指功能的变量名通常不是一个好主意。 我观察到您的基本HTML代码中存在很多问题,因为第一阶段本身试图编写适当的代码并遵循最佳实践。

对于以下

function url(url){
      document.open(url); //is url the function or the variable?
}

用途如下

function goto_url(url) {
  window.location.href = url; //I think this might be what you are looking for
}

完全不同的是,使用javascript验证用户密码就像银行在同意兑现之前询问您支票是否还可以。

抱歉,我的意思是window.location.href ,但是如果他们单击“后退”按钮,可能会导致历史记录循环。也许使用window.location.replace(url)更好

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM