這篇文章主要介紹了JavaScript判斷undefined類型的正確方法,相信很多同學在遇到這問題時都會用到錯誤的方法,正確方法也很簡單,需要的朋友可以參考下
代碼如下:
if (reValue== undefined){
alert("undefined");
}
發現判斷不出來,最後查了下資料要用typeof
方法:
代碼如下:
if (typeof(reValue) == "undefined") {
alert("undefined");
}
typeof 返回的是字符串,有六種可能:"number"、"string"、"boolean"、"object"、"function"、"undefined"