想知道如果有人能引導我走向正確的方向,我正在嘗試使用Javascript來製作一個小遊戲來幫助我學習。從本質上講,我聲明瞭所有我想要在我的函數外部進行更改的變量,以便它們作用於代碼中的全局函數,但if語句似乎沒有證明是成功的,因爲教程指出我的代碼是正確的,請參閱下面的代碼;Javascript - if statement error
var Refresh;
Refresh = "InActive";
var Counter;
Counter = 0;
var StartTime;
function StartGame() {
var StartDate;
StartDate = new Date();
StartTime = d.getTime();
Refresh = "Active";
}
function FunctionB1() {
if (Refresh == "Active"){
document.getElementById("Bean1").style.display = "None";
Counter ++;
document.getElementById("BeanCount").innerHTML = Counter + " Out of 150";
}
}
我看不到'var Refresh'在您的發佈代碼中的任何位置聲明。 –
@GlenDespaux第一行... – Teemu
啊我看到了,它沒有放入代碼塊。對不起,關於 –