2017-08-10 9 views
-1

正しいコードを入力できるようにするコードボックスを作成しておきます。'期待された式、キーワードelse'エラーを修正しました。JavaScript

var code = document.getElementById("codeInsertBox"); 
    var codeText = code.value; 
    if(codeText == "08213"); 
    var newItem = document.createElement("div"); 
    newItem.innerHTML = messageI; 
    document.getElementById("messageAppear").appendChild(newItem); 
    localStorage.setItem('call', '10'); 
    } else { 
    alert("Incorrect Code. Please try again. (If you are seeing this message and the correct code message has appeared, it is an error. Please contact me at [email protected])"); 
    } 
} 

答えて

2

これがあればそこにすぐに、他に終了した場合は、孤児になった後は、余分な;を持っています。

;を実行すると、すぐにステートメントが終了します。

if(codeText == "08213"); 

if(codeText == "08213"){} 

基本的にはあなたのコードではない場合の条件の内側に等しいです。したがって、あなたの平等は

if(codeText == "08213"){} 
    var newItem = document.createElement("div"); 

になります。それを削除すると、あなたは大丈夫でしょう。

2

if文を終了します。あなたはこれで正常に動作します

if(codeText == "08213"){ 

ホープすべてに

if(codeText == "08213"); 

からあなたのコードを変更する必要があります。

0

削除;この行に

if(codeText == "08213"); 

このように正しい形式でフォーマットしてください。

if(codeText == "08213"){ 
     // 
    } else { 
     // 
    } 
関連する問題