首页 > 代码库 > js判断字段是否为空 isNull(非原创)
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(非原创)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。