码迷,mamicode.com
首页 > Web开发 > 详细

js判断对象为空

时间:2016-06-21 14:02:13      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

http://www.jb51.net/article/42713.htm

var isEmptyValue = function(value) {
            var type;
            if(value == null) { // 等同于 value === undefined || value === null
                return true;
            }
            type = Object.prototype.toString.call(value).slice(8, -1);
            switch(type) {
            case ‘String‘:
                return !$.trim(value);
            case ‘Array‘:
                return !value.length;
            case ‘Object‘:
                return $.isEmptyObject(value); // 普通对象使用 for...in 判断,有 key 即为 false
            default:
                return false; // 其他对象均视作非空
            }
        };

 

其中 isEmptyObject

function isEmptyObject(e) {  
    var t;  
    for (t in e)  
        return !1;  
    return !0  
}  

 

js判断对象为空

标签:

原文地址:http://www.cnblogs.com/mitang/p/5603383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!