JavaScript檢查變量的類型,並判斷是整形或是字符串或是其它類型等等。
[Ctrl+A 全選 注:如需引入外部Js需刷新才能執行]
2、toString 本來是用來做字符串轉換的,不過現在流行用來做變量類型的檢查了。舜子這裡也寫了一個函數,方便檢查變量的類型,可以用來代替 typeof
復制代碼 代碼如下:
function getType(o) {
var _t; return ((_t = typeof(o)) == "object" ? o==null && "null" || Object.prototype.toString.call(o).slice(8,-1):_t).toLowerCase();
}
執行結果:
getType("abc"); //string
getType(true); //boolean
getType(123); //number
getType([]); //array
getType({}); //object
getType(function(){}); //function
getType(new Date); //date
getType(new RegExp); //regexp
getType(Math); //math
getType(null); //null