Js 判断 div 是否为空

$("#main").each(function(){
    var t = $(this).html();
    t = t.replace(/[\r\n]/g,"").replace(/[ ]/g,"");
    if(t == ''){
        // 如果为空
    }else{
        // 如果不为空
    }
});

String.prototype.isEmpty = function () {
  var s1 = this.replace(/[\r\n]/g, '').replace(/[ ]/g, ''),
      s2 = (s1 == '') ? true : false;
  return s2;
};

$('.list').html().isEmpty();
发表评论
* 昵称
* Email
* 网址
* 评论