DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> Js檢查變量類型的代碼()
Js檢查變量類型的代碼()
編輯:關於JavaScript     
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
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved