JS中判斷一個字符串是以指定字符串結尾的方法

String.prototype.endWith = function(endStr){ var d = this.length - endStr.length; return (d >= 0&&this.lastIndexOf(endStr) == d) } var str = "abcdef"; alert(str.endWidth("ef"));
相關文章
相關標籤/搜索