js判断字段是否为空 isNull(非原创)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js判断字段是否为空 isNull(非原创)相关的知识,希望对你有一定的参考价值。

//在js中if条件为null/undefined/0/NaN/""表达式时,统统被解释为false,此外均为true .
//为空判断函数
function isNull(arg1)
{
 return !arg1 && arg1!==0 && typeof arg1!=="boolean"?true:false;
}


//alert(isNull(null));    //true
//alert(isNull(‘‘));      //true
//alert(isNull());       //true
//var aa={};          
//alert(isNull(aa.a));   //true
//alert(isNull(0));        //false
//alert(isNull(‘0‘));    //false
//alert(isNull(true));   //false
//alert(isNull("undefined"));  //false
//alert(isNull(undefined));     //true
//alert(isNull([]));       //false
//alert(isNull({}));       //false

 

  

以上是关于js判断字段是否为空 isNull(非原创)的主要内容,如果未能解决你的问题,请参考以下文章

sql如何判断字段的值是否空值

如何判断SQL SERVER表中字段为空

如何判断SQL SERVER表中字段为空?

判断字段的值是否为空

mysql 中 isnull 和 ifnull 判断字段是否为null

在Oracle中怎么判断字段是不是为空