DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JS實例教程:檢查變量類型
JS實例教程:檢查變量類型
編輯:關於JavaScript     

網頁制作poluoluo文章簡介:toString 本來是用來做字符串轉換的,不過現在流行用來做變量類型的檢查了。舜子這裡也寫了一個函數,方便檢查變量的類型,可以用來代替 typeof.

toString 本來是用來做字符串轉換的,不過現在流行用來做變量類型的檢查了。破洛洛這裡也寫了一個函數,方便檢查變量的類型,可以用來代替 typeof

function getType(o) {
  var _t; return ((_t = typeof(o)) == "object" ? 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

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved