Bootstrap

js typeof() 判断 'undefined'

JS中typeof() 判断 ‘undefined’

经常会在js里用到数组,比如 多个名字相同的input,若是动态生成的, 提交时就需要判断其是否是数组.

错误用法:
if(document.mylist.length != "undefined" ) {}

正确用法:

if( typeof(document.mylist.length) != "undefined" ) {} 
或 if( !isNaN(document.mylist.length) ) {} 

至于if(var==’undefined’),是要判断变量是否未定义,即是否不存在。但如果var没有定义就会报错,这时用typeof(var)==”undefined”

关于typeof

typeof 运算符返回一个用来表示表达式的数据搜索类型的字符串!

对象,数组和null  typeof(x) = "object" 
函数    typeof(x) = "function" 
;