如何更改页面布局但相同的URL

时间:2015-02-02 04:17:13

标签: html

您好我的网站有一个基本的登录系统,它不是最好和最安全的,但它是一个登录页面,当您输入密码时,它会重定向到一个完整的不同页面,我想知道如何使页面完全更改 登录后,继承密码页面源。 我知道这是可能的,我需要的是在成功登录后更改整个布局。

<HTML>
   <HEAD>
      <TITLE>Login</TITLE>
      <script language="JavaScript" type="text/javascript">
         <!--- PASSWORD PROTECTION SCRIPT
            function AuthDetials() {
            
            var password = 'password';
            
            if (this.document.login.pass.value == password) {
              top.location.href="correct.html";
            }
            else {
              location.href="incorrect.html";
              }
            }
            
            
            // End hiding --->
      </script>
      <style type="text/css">
         BODY { COLOR: #FFFFFF; FONT: 12px verdana, arial, sans-serif; font-weight: normal }
      </style>
	  

1 个答案:

答案 0 :(得分:2)

//demo.html

<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","ajax_info.txt",true);
xmlhttp.send();
}
</script>
</head>
<body>

<div id="myDiv"><h2>Let AJAX change this text</h2></div>
<button type="button" onclick="loadXMLDoc()">Change Content</button>

</body>
</html>





// ajax_info.txt

hello