我想讓此代碼重定向到另一個頁面,當人員輸入hello時。我該怎麼辦? 如何在javascript中爲我的html網站設置密碼
<p>Click the button to demonstrate the prompt box.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var person = prompt("Please enter your password");
if (person == hello) {
window.open("http://www.w3schools.com");
}
else {
confirm("Invalid Password")}
}
</script>
</body>
</html>
問題與標題完全無關。 – Scott
使用javascript(或任何客戶端腳本)來控制密碼訪問通常是一個非常糟糕的主意。您可能不太安全的唯一方法是直接在頁面上打印密碼供所有用戶查看。 – nomistic
這只是一個實驗密碼項目 –