PHP
·
发表于 5年以前
·
阅读量:8281
String.prototype.endWith = function(s) {
var d = this.length - s.length;
return d >= 0 && this.lastIndexOf(s) == d;
};