0

我正在寻找一种快速检查布尔变量而不检查它是否存在的方法,例如:

if(variable){
   alert(variable);
}

但在这里我可能会得到“ReferenceError:变量未定义”

4

2 回答 2

2

用于typeof检查变量是否存在。

if((typeof variable !== "undefined") && variable) {
  ...
}
于 2013-04-27T11:08:43.997 回答
1

尝试

if(typeof variable != 'undefined'){
   alert(variable);
}
于 2013-04-27T11:09:10.500 回答