1樓:泡泡糖
typeof算是最常見的了,使用它會返回一個字串,適合函式物件和基本型別(js中的基本型別:number、string、boolean、null、undefined、object[物件])的判斷。
console.log("測試number:"+typeof 1); console.log("測試string:"+typeof "str");
console.log("測試false:"+typeof false); console.log("測試null:"+typeof null);
console.log("測試undefined:"+typeof undefined); console.
log("測試object:"+typeof new object());
console.log("測試object:"+typeof new array());
console.log("看看typeof nan是啥:"+typeof nan);
console.log("我想看看陣列[1,2,3]型別:"+typeof [1,2,3]);
console.log("看看function是啥:"+typeof function(){});
2樓:奔跑的窩牛的家
如何判斷js中的資料型別:typeof、instanceof、 constructor、 prototype方法比較
如何判斷js中的型別呢,先舉幾個例子:
var a = "iamstring.";
var b = 222;
var c= [1,2,3];
var d = new date();
var e = function();
var f = function();
最常見的判斷方法:typeof
alert(typeof a) ------------> string
alert(typeof b) ------------> number
alert(typeof c) ------------> object
alert(typeof d) ------------> object
alert(typeof e) ------------> function
alert(typeof f) ------------> function
其中typeof返回的型別都是字串形式,需注意,例如:
alert(typeof a == "string") -------------> true
alert(typeof a == string) ---------------> false
另外typeof 可以判斷function的型別;在判斷除object型別的物件時比較方便。
判斷已知物件型別的方法: instanceof
alert(c instanceof array) ---------------> true
alert(d instanceof date)
alert(f instanceof function) ------------> true
alert(f instanceof function) ------------> false
注意:instanceof 後面一定要是物件型別,並且大小寫不能錯,該方法適合一些條件選擇或分支。
根據物件的constructor判斷: constructor
alert(c.constructor === array) ----------> true
alert(d.constructor === date) -----------> true
alert(e.constructor === function) -------> true
注意: constructor 在類繼承時會出錯
eg,function a(){};
function b(){};
a.prototype = new b(); //a繼承自b
var aobj = new a();
alert(aobj.constructor === b) -----------> true;
alert(aobj.constructor === a) -----------> false;
而instanceof方法不會出現該問題,物件直接繼承和間接繼承的都會報true:
alert(aobj instanceof b) ----------------> true;
alert(aobj instanceof b) ----------------> true;
言歸正傳,解決construtor的問題通常是讓物件的constructor手動指向自己:
aobj.constructor = a; //將自己的類賦值給物件的constructor屬性
alert(aobj.constructor === a) -----------> true;
alert(aobj.constructor === b) -----------> false; //基類不會報true了;
通用但很繁瑣的方法: prototype
alert(object.prototype.tostring.call(a) === 『[object string]』) -------> true;
alert(object.prototype.tostring.call(b) === 『[object number]』) -------> true;
alert(object.prototype.tostring.call(c) === 『[object array]』) -------> true;
alert(object.prototype.tostring.call(d) === 『[object date]』) -------> true;
alert(object.prototype.tostring.call(e) === 『[object function]』) -------> true;
alert(object.prototype.tostring.call(f) === 『[object function]』) -------> true;
大小寫不能寫錯,比較麻煩,但勝在通用。
通常情況下用typeof 判斷就可以了,遇到預知object型別的情況可以選用instanceof或constructor方法,簡單總結下,挖個坑,歡迎補充!
js如何判斷變數的資料型別
3樓:匿名使用者
檢測簡單的資料型別的方法
typeof方法用於檢測簡單的資料型別如typeof 12instanceof的例項方法檢測如 instanceof array // true
arr.constructor == array判斷arr的建構函式是否為陣列,如果是則arr是陣列
array.isarray()判斷是否是陣列精確判斷資料型別object.prototype.tostring.call(arr)
4樓:一年孤獨
使用typeof關鍵字, 可以得到資料型別的字串表示(全部為小寫):
var a = 0, b= true, c="text", d = , e=[1,2];
var f = function(){}, h = null, i
if(typeof a === "number") a = a*2;
typeof a; // "number"
typeof b; // "boolean"
typeof c; // "string"
typeof d; // "object"
typeof e; // "object"
typeof f; // "function"
typeof h; // "object"
typeof i; // "undefined"
可以看出對於null, , 返回的型別都是"object", 可進一步判斷:
var o = {};
if(typeof o === "object")else if(array.isarray(o))else
}一般情況下, 我們不需要全面判斷資料型別, 例如往往只要判斷是否為***資料型別, 用以上方法足夠, 但顯然上面的方法在判斷object物件時有點繁瑣, 所以大多數js類庫中提供有擴充套件方法, 這些庫一般採用的方法如下:
object.prototype.tostring.call(100); //"[object number]"
object.prototype.tostring.call('100'); //"[object string]"
object.prototype.tostring.call(undefined); //"[object undefined]"
object.prototype.tostring.call(true); //"[object boolean]"
object.prototype.tostring.call(null); //"[object null]"
object.prototype.tostring.call({}); //"[object object]"
object.prototype.tostring.call(); //"[object array]"
object.prototype.tostring.call(function () ); //"[object function]"
JS開發中基本資料型別有哪些,JS中都有哪些資料型別呢?
var弱型別。number,string,boolean undefined,null number,boolean,null,undifind,string js中都有哪些資料型別呢?js中有5種資料型別 undefined null boolean number和string。還有一種複雜的資料...
js怎麼判斷字串中是否有中文,js判斷字串是否有漢字
給輸入加 copy一個失去焦點事件onblur,再用正規表示式判斷輸入框的內容有沒有除了數字的內容。需要注意的地方是數字中可能有 點。可以用正規表示式。如 function checkchinese obj,val return false return true 第二複種方製法 包含中bai文則返...
js判斷是否包含字串,js中怎麼判斷一個字串是否在另一個字串中?
if a.indexof 0 不包含else包含 if a.indexof 1 a.indexof 1 a.indexof 1 用正則表 bai達式du 把1 的結合使用,就完全ok啦!簡單的就用 varstr hello world vars str.indexof hello 存在則s 1不存在...