出于某种原因,如果在 if 之后,它会继续,除了 ifs 将您带到不同的地方,这是我目前拥有的代码
<script type="text/javascript">
function whatname(button) {
var post = prompt("Name?", "Visitor")
if(post == "Nick"){
alert("Hi Nick")
window.location = "index.html"
}
if(post == "Visitor"){
alert("Welcome Visitor")
window.location = "index.html"
}
if(post == ""){
alert("Please Enter Name")
}
if(post == null){
alert("Closing")
}
if(post == "show me a secret"){
window.location = "secret.html"
}
if(post == "Greg"){
alert("Test")
}
if(post == "greg"){
alert("Test 1")
}
else{
alert("Welcome " + post + ", Have Fun!")
window.location = "index.html"
}
}
</script>
在 if 发生之后,它会继续,比如假设我单击取消(这将是 null)它会说“正在关闭”,但是会出现另一个弹出窗口并说“欢迎 Null,玩得开心!” 比它带我去别的地方,我不知道出了什么问题,如果你能帮忙,那就太好了。