var arr=[];
function
isArray(x){
if(typeof(x)=="object"&&x.constructor==Array){
return
true;
}else{
return false;
}
}
isArray(arr);//true
2021-09-10 06:37:59
var arr=[];
function
isArray(x){
if(typeof(x)=="object"&&x.constructor==Array){
return
true;
}else{
return false;
}
}
isArray(arr);//true
下一篇:MVC 的HTTP请求