js判断字符是否为空的方法
2021-05-17 10:27
阅读:422
标签:方法 判断 fine cti def 字符 obj typeof val js判断字符是否为空的方法: 使用示例: js判断字符是否为空的方法 标签:方法 判断 fine cti def 字符 obj typeof val 原文地址:http://www.cnblogs.com/shuilangyizu/p/7744111.html
//判断字符是否为空的方法
function isEmpty(obj){
if(typeof obj == "undefined" || obj == null || obj == ""){
return true;
}else{
return false;
}
}
if (!isEmpty(value)) {
alert(value);
}
评论
亲,登录后才可以留言!