PHPでも発生します。pass1 がプロンプト ポップアップに入力されると、その下に通常どおりアラートが表示されます。しかし、その後、else のアラート ボックスも表示されます。pass1でelseのアラートボックスが実行されないようにするにはどうすればよいですか?
function download()
{
x=prompt("Enter the download code here.")
if (x=="pass1")
{
alert("This function has been deleted by the administrator. Jeff, get the hell out of here.")
}
if (x=="pass2")
{
alert("I like pie too.")
}
else
{
alert("The code you specified was invalid.")
}
}