字符串非空判断

function isEmpty(str){
	if(str != null && str.Trim().length > 0){
		return false;
	}
	return true;
}
posted @ 2019-12-16 17:14  ZhiPeng007  阅读(181)  评论(0编辑  收藏  举报