jQuery判断是否为空

(function($){     $.isBlank = function(obj){         return(!obj || $.trim(obj) === "");     };  })(jQuery); $.isBlank(" ") //true  $.isBlank("") //true  $.isBlank("\n") //true $.isBlank("a") //false  $.isBlank(null) //true  $.isBlank(undefined) //true $.isBlank(false) //true $.isBlank([]) //true

你可能感兴趣的:(jQuery判断是否为空)