2020
10-10
10-10
js和jquery判断数据类型的4种方法总结
1.typeoftypeof是一个运算符,有2种使用方式:typeof(表达式)和typeof变量名,第一种是对表达式做运算,第二种是对变量做运算。此方法的返回结果只要以下几种:Number、String、undefined、Bollean、Object、Function弊端在于如果数据类型为引用数据类型,他只能返回Objectconsole.log(typeof1);//numberconsole.log(typeoftrue);//bolleanconsole.log(typeof'欢喜');//stringconsole.log(typeof{});//objectconsole.log...
继续阅读 >