我需要为我的donload网站索取密码。
我尝试使用以下脚本,但它不适用于IE
window.onload = function Passwort () {
var Passwort = "asdf";
var Eingabe = window.prompt("Bitte geben Sie das Passwort ein", "");
if (!Passwort);{
if (Eingabe != Passwort) {
alert("Falsches Passwort!");
} else {
document.getElementById("content").style.display="block";
}
}
}
有没有人知道问题可能是什么? 谢谢!
答案 0 :(得分:1)
试试这个:
window.onload = function() {
var Passwort = "asdf";
var Eingabe = window.prompt("Bitte geben Sie das Passwort ein", "");
if (Eingabe != Passwort) {
alert("Falsches Passwort!");
} else {
document.getElementById("content").style.display="block";
}
}