function isNotNull(exp) {
if (typeof (exp) == "undefined" || exp == "") {
return false;
}
return true;
}
js判断字符串不为空
最新推荐文章于 2025-06-05 01:43:42 发布
function isNotNull(exp) {
if (typeof (exp) == "undefined" || exp == "") {
return false;
}
return true;
}