1. 程式人生 > >使用 typeof 來檢測對象是否undefined

使用 typeof 來檢測對象是否undefined

www. typeof post pre 參考 rip java block .html

需求

判斷是否為undefined

解決

使用 typeof 來檢測對象是否已定義:

if (typeof Obj !== "undefined" && Obj !== null) 

JavaScript 中, null 用於對象, undefined 用於變量,屬性和方法。

對象只有被定義才有可能為 null,否則為 undefined。

參考:http://www.runoob.com/js/js-mistakes.html

使用 typeof 來檢測對象是否undefined