String.prototype.isEmpty = function () { var s1 = this.replace(/[\r\n]/g, '').replace(/[ ]/g, ''), s2 = (s1 == '') ? true : false; return s2;};
$(this).html().isEmpty();
本文共 227 字,大约阅读时间需要 1 分钟。
String.prototype.isEmpty = function () { var s1 = this.replace(/[\r\n]/g, '').replace(/[ ]/g, ''), s2 = (s1 == '') ? true : false; return s2;};
$(this).html().isEmpty();
转载于:https://www.cnblogs.com/zjj1990/p/8086910.html