转载于:js判断是否为对象
var obj = {};
1、toString(推荐)
Object.prototype.toString.call(obj) === '[Object Object]'
2、constructor
obj.constructor === Object
3、instanceof 需要注意的是由于数组也是对象,因此用 arr instanceof Object 也为true。
obj instanceof Object
4、typeof
typeof obj === Object
// 根据typeof判断对象也不太准确
表达式 返回值
typeof undefined 'undefined'
typeof null 'object'
typeof true 'boolean'
typeof 123 'number'
typeof "abc" 'string'
typeof function() {} 'function'
typeof {} 'object'
typeof [] 'object'
5、$.isPlainObject()
判断指定参数是否是一个纯粹的对象(所谓"纯粹的对象",就是该对象是通过"{}"或"new Object"创建的。)
$.isPlainObject(obj)

本文介绍了JavaScript中五种判断变量是否为对象的方法,包括toString、constructor、instanceof、typeof及$.isPlainObject(),并详细解释了每种方法的使用场景和局限性。

被折叠的 条评论
为什么被折叠?



