js判断字符串是否为空,多个空格也算为空

时间:2022-05-27 20:05:38   收藏:0   阅读:11
String.prototype.trim = function () {
return this.replace(/(^\s*)|(\s*$)/g, ‘‘);
}

function isEmpty(obj) {
if (typeof obj === "undefined" || obj == null || obj.trim() == "") {
return true;
} else {
return false;
}
}





原文:https://blog.51cto.com/u_15639793/5297505

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!