$(document).ready(function() {
$(document).display(none);
var password =("You have just entered a private website. Please enter the password to access it!");
if (password == "biology") {
$(document).display();
}
else {
window.location.replace("https://www.google.co.uk")
};
});
html {
background-image: url("bg.jpg")
}
body {
margin: 0 25%;
background-color: #ccc;
}
nav li {
padding-left: 5px;
border: solid 5px #aaa;
}
nav ul {
list-style-type: none;
position: fixed;
left: 9%;
font-size: 36px;
}
nav a {
color: #ccc;
text-decoration: none;
}
article {
background-color: white;
border: white solid #c0c;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!DOCTYPE html>
<html lang="pl">
<head>
<title>Krystian Mikołajczyk</title>
<link href="style.css" rel="stylesheet" type="text/css">
<link href="jquery-2.1.1.js" type="text/javascript">
<link href="pass.js" type="text/javascript">
</head>
<body>
<header>
<h1 align="center"><i>Krystian Mikołajczyk</i></h1>
</header>
<nav>
<ul><i>
<li><a href="#">Home</a></li>
<li><a href="#">Uploads</a></li>
<li><a href="#">Downloads</a></li>
<li><a href="#">Contact</a></li>
</i></ul>
</nav>
<br>
<br>
<br>
<article>
<section>
<h1>Recent Update</h1>
</section>
</article>
</body>
</html>
我试图为自己创建一个可以随时随地使用的网站,并且我想用密码保护它,特别是如果我要进行一些我想为自己保留的下载和上传。
密码应该是“生物学”,因为我希望我的生物学老师在开发过程中为我上传一本 pdf 书。
我不知道我做错了什么,但提示消息不想出现,这就是我想知道的。