判断是否为undefined
使用 typeof 来检测对象是否已定义:
if (typeof Obj !== "undefined" && Obj !== null)
JavaScript 中, null 用于对象, undefined 用于变量,属性和方法。
对象只有被定义才有可能为 null,否则为 undefined。
参考:http://www.runoob.com/js/js-mistakes.html