如果变量不为null,则为Javascript

时间:2014-09-24 14:10:59

标签: javascript

if (typeof (location.x != null) {

使用上面的内容我遇到了以下错误:Uncaught TypeError: Cannot read property 'x' of null

我尝试过console.log(location.x)会产生null

的示例

3 个答案:

答案 0 :(得分:7)

if (location && location.x) {

}    

答案 1 :(得分:2)

你可以这样做:

if (location && location.x) {

}

答案 2 :(得分:1)

由于您的位置变量为空

,因此无法访问x属性