码迷,mamicode.com
首页 > Web开发 > 详细

js判断字符是否为空的方法

时间:2017-10-27 17:50:47      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:方法   判断   fine   cti   def   字符   obj   typeof   val   

js判断字符是否为空的方法:

//判断字符是否为空的方法
function isEmpty(obj){
    if(typeof obj == "undefined" || obj == null || obj == ""){
        return true;
    }else{
        return false;
    }
}

 使用示例:

if (!isEmpty(value)) {
    alert(value);
}

 

js判断字符是否为空的方法

标签:方法   判断   fine   cti   def   字符   obj   typeof   val   

原文地址:http://www.cnblogs.com/shuilangyizu/p/7744111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!