我是靠谱客的博主 无私高山,最近开发中收集的这篇文章主要介绍js判断字段是否为空 isNull 两种方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1.//在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

 

2.

var parm = *****

if(!!parm){

  

}

!代表非 代表否定

!!代表肯定

 

 

转载于:https://my.oschina.net/u/3145956/blog/808849

最后

以上就是无私高山为你收集整理的js判断字段是否为空 isNull 两种方法的全部内容,希望文章能够帮你解决js判断字段是否为空 isNull 两种方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部