私は何らかのログインページを作ろうとしています(私はセキュリティや何らかの並べ替えを気にしません。これはテストです。 。。コーダの私は、コードに苦しんだ私のようにそれを作りたい:だからなぜこのコードは機能しませんか? "テスト"ログインページのためのforとifの組み合わせ
If the username was filled in as "Ardent" and the password as "1",
Say something like "Welcome!"
If the username or(and) the password are(is) incorrect,
alert("The username and password is incorrect.");
and make it loop, leading to asking for username and password again.
、これは私が、私はこれが働くことができる方法を見つけることができませんでした(コード化されたものですので、私はしないでくださいでも)それの基本的な構造を有している。
for([id == prompt("What is your ID?"), password == prompt("What is your password?")];
id == "Ardent" || password == "1" ;) {
prompt("What is your ID?");
prompt("What is your password?");
if(id == "Ardent" || password == "1") {
alert("Welcome back!");
}
}
ありがとうございます! 申し訳ありませんが、それは実際に完全な混乱:( であれば、私は、コードでそんなに悪いんだと私はチュよ初心者です。
上
もっと?あなたはエラーがどこにあるかをあなたに教える構文エラーを得ているはずです。 '=='は等価演算子であり、代入ではありません。 – RobG
コードとアルゴリズムインデント – Himanshu