function isNull(tmp){
if (typeof(tmp) != “undefined”){
return tmp;
}else {
return “”;
}
}
Js中判断 页面是否为undefined
最新推荐文章于 2022-05-27 08:00:00 发布
function isNull(tmp){
if (typeof(tmp) != “undefined”){
return tmp;
}else {
return “”;
}
}