How to check for “undefined” in JavaScript?
Possible Duplicate:
Best way to check for"undefined" in JavaScript?
我想做一个if语句,如果没有定义值,就让它通过。
我试过
1
| if (something !="undefined") |
和
1
| if (something !=="undefined") |
然而,无论怎样,它似乎都会出现在if声明中。如果它是未定义的,它就会通过。如果定义了它,它就会通过。我做错什么了吗?
- 更完整的答案是:stackoverflow.com/questions/3390396/…