修复'预期表达式,得到关键字其他'错误JavaScript

时间:2017-08-10 05:35:50

标签: javascript html

我想创建一个代码框,让您输入正确的代码,然后它会告诉您。

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 myEmail@gmail.com)");
   }
}

2 个答案:

答案 0 :(得分:2)

你有一个额外的yyyy-mm-dd,如果它立即终止,那么其他就变成了孤儿。

当你;时,语句就会立即结束。

;

等于

   if(codeText == "08213"); 

基本上你的代码不在if条件中。所以你的等于

 if(codeText == "08213"){}

删除if(codeText == "08213"){} var newItem = document.createElement("div"); ,你没事。

答案 1 :(得分:2)

你要结束if语句。你需要改变你的代码

if(codeText == "08213"){ 

{{1}}

希望一切顺利。