美文网首页JS
js 判断变量为空

js 判断变量为空

作者: 凤箫之舞 | 来源:发表于2019-11-28 14:09 被阅读0次

// 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("为空");

}

相关文章

网友评论

    本文标题:js 判断变量为空

    本文链接:https://www.haomeiwen.com/subject/yhkbwctx.html