1. 程式人生 > >js判斷undefined型別

js判斷undefined型別

js判斷undefined型別

if (reValue== undefined){
alert(“undefined”);
}

發現判斷不出來,最後查了下資料要用typeof
方法:

if (typeof(reValue) == “undefined”) {
alert(“undefined”);
}

typeof 返回的是字串,有六種可能:“number”、“string”、“boolean”、“object”、“function”、“undefined”

參考文章:
http://www.cnblogs.com/binaryworms/archive/2010/04/08/1707064.html


https://blog.csdn.net/evilcry2012/article/details/52937247