关于jquery:检查Javascript中是否存在值

Checking to see if a value exists in Javascript

如何检查给定变量是否有值?JS与PHP的ISset的等效关系是什么?


1
2
3
if (myVariable === undefined) {
    // myVariable has not been assigned a value...
}

此外,在StackOverflow中,同样的问题在这里被提出和回答。请参见,如何确定页面中是否定义了javascript变量?


1
2
3
if(typeof variable ==="undefined") {
    //code here
}