/*
*判断非空
*
*/
function isEmpty(val){
if(val == null)return true;
if(val == undefined || val == 'undefined') return true;
if(val == "") return true;
if(val.length == 0) return true;
if(!/[^(^\s*)|(\s*$)]/.test(val)) return true;
return false;
}
2022-10-26 13:10:26
/*
*判断非空
*
*/
function isEmpty(val){
if(val == null)return true;
if(val == undefined || val == 'undefined') return true;
if(val == "") return true;
if(val.length == 0) return true;
if(!/[^(^\s*)|(\s*$)]/.test(val)) return true;
return false;
}