Javascript什么都不做

时间:2016-12-20 21:49:01

标签: javascript

以下代码什么都不做。当我点击按钮时,它应该告诉我有多少猜测计算机已经找到我的给定输入。我正在使用Adobe Dreamweaver。可能有什么问题?

window.onload=function(){
var input=document.getElementById("yourinputid");
if(localStorage.getItem("input")){
//if there is a stored value, apply it to the input
input.value=localStorage.getItem("input");
}
input.oninput=function(){
//if input is changed, store it
  localStorage.setItem("input",input.value);
};
};

2 个答案:

答案 0 :(得分:0)

有一个错字。将Flase替换为false。您还应该在代码中使用===而不是==,但这是次要的。

答案 1 :(得分:0)

请检查您的浏览器控制台,您可能会发现您有一些类似False/True的拼写错误,它们应采用小写格式false/true,例如:

var GotIt=False;
while(GotIt==Flase){
}

应该是:

var GotIt=false;
while(GotIt==false){
}

希望这有帮助。