码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 判断是否为空

时间:2019-06-28 01:08:23      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:key   trim   div   var   null   log   未定义   fine   判断   

 

//    var a = "";
//    var a = " ";
//    var a = null;
//    var a = undefined;
//    var a = [];
//    var a = {};
//    var a = NaN;
    
    if(a === undefined) { // 只能用 === 运算来测试某个值是否是未定义的
        console.log("为undefined");
    }
    if(a == null) { // 等同于 a === undefined || a === null
        console.log("为null");
    }
    // String    
    if(a == "" || a == null || a == undefined){ // "",null,undefined
        console.log("为空");
    }
    if(!a){ // "",null,undefined,NaN
        console.log("为空"); 
    }
    if(!$.trim(a)){ // "",null,undefined
        console.log("为空");
    }
    // Array
    if(a.length == 0){ // "",[]
        console.log("为空");
    }
    if(!a.length){ // "",[]
        console.log("为空");
    }
    // Object {}
    if($.isEmptyObject(a)){ // 普通对象使用 for...in 判断,有 key 即为 false
        console.log("为空");
    }

 

JavaScript 判断是否为空

标签:key   trim   div   var   null   log   未定义   fine   判断   

原文地址:https://www.cnblogs.com/sea-stream/p/11100392.html

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