1. 程式人生 > >js中判斷 .html() 是否為空

js中判斷 .html() 是否為空

bsp emp prot gpo lac pre proto html function

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

js中判斷 .html() 是否為空