js判断值是否为空

js判断值是否为空

var a = ""    if (a =="" ||undefined || null) {        alert("数据为空")    }else{        aler
JavaScript140