$("#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();