//判空
function strIsEmpty(str){
if (str == "" || str == null || typeof(str) == "undefined") {
return true;
}else{
return false;
}
}
js判空函数
最新推荐文章于 2025-03-05 15:30:59 发布
//判空
function strIsEmpty(str){
if (str == "" || str == null || typeof(str) == "undefined") {
return true;
}else{
return false;
}
}