1 判断字符串为空
(1)第一种方法
var test="";
if(test==""||test==null||test==undefined){
alert("为空");
}
(2)第二种方法
var test="";
if(!test){
alert("为空");
}
2 判断字符串不为空
(1)第一种方法
var test="";
if(test!=""&&test!=null&&test!=undefined){
alert("不为空");
}
(2)第二种方法
var test="";
if(!!test){
alert("不为空");
}