js判断字符串是否为空(判断字符串长度)

 

//去空格
function trim(str){     
		            return str.replace(/^(\s|\u00A0)+/,'').replace(/(\s|\u00A0)+$/,'');     
		     } 

//假如列表为空,只能选择黑名单,不为空可以选择白名单
function changeChecked(){
					var str = trim($("#content").html());
					if(str.length == 0){
						$(".nameList[value='0']").attr("checked","true");
						$(".nameList[value='1']").attr("disabled","disabled");
					}else{
						$(".nameList").removeAttr("disabled");
					}
				}

 

 

你可能感兴趣的:(Jquery)