您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)JavaScript中怎樣判斷一個值的類型的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
我們知道在js中有一個運算符可以幫助我們判斷一個值的類型,它就是typeof運算符。
console.log(typeof 123); //number console.log(typeof '123'); //string console.log(typeof true); //boolean console.log(typeof undefined); //undefined console.log(typeof null); //object console.log(typeof []); //object console.log(typeof {}); //object console.log(typeof function() {}); //function
我們從以上結(jié)果可以看出typeof的不足之處,它對于數(shù)值、字符串、布爾值分別返回number、string、boolean,函數(shù)返回function,undefined返回undefined,除此以外,其他情況都返回object。
所以如果返回值為object,我們是無法得知值的類型到底是數(shù)組還是對象或者其他值。為了準(zhǔn)確得到每個值的類型,我們必須使用js中另一個運算符instanceof。下面簡單的說一下instanceof的用法。
instanceof運算符返回一個布爾值,表示指定對象是否為某個構(gòu)造函數(shù)的實例。
instanceof運算符的左邊是實例對象,右邊是構(gòu)造函數(shù)。它會檢查右邊構(gòu)造函數(shù)的ptototype屬性,是否在左邊對象的原型鏈上。
var b = []; b instanceof Array //true b instanceof Object //true
注意,instanceof運算符只能用于對象,不適用原始類型的值。
所以我們可以結(jié)合typeof和instanceof運算符的特性,來對一個值的類型做出較為準(zhǔn)確的判斷。
//得到一個值的類型 function getValueType(value) { var type = ''; if (typeof value != 'object') { type = typeof value; } else { if (value instanceof Array) { type = 'array'; } else { if (value instanceof Object) { type = 'object'; } else { type = 'null'; } } } return type; } getValueType(123); //number getValueType('123'); //string getValueType(true); //boolean getValueType(undefined); //undefined getValueType(null); //null getValueType([]); //array getValueType({}); //object getValueType(function(){}); //function
感謝各位的閱讀!關(guān)于“JavaScript中怎樣判斷一個值的類型”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。