반응형
if (!String.prototype.endsWith) {
String.prototype.endsWith = function(searchString, position) {
var subjectString = this.toString();
if (typeof position !== 'number' || !isFinite(position) || Math.floor(position) !== position || position > subjectString.length) {
position = subjectString.length;
}
position -= searchString.length;
var lastIndex = subjectString.indexOf(searchString, position);
return lastIndex !== -1 && lastIndex === position;
};
}
참조 : https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith
반응형
'스크립트' 카테고리의 다른 글
jquery checkbox checked value join (0) | 2020.05.04 |
---|---|
select :after 클릭하기 (0) | 2020.05.03 |
jstl referer 레퍼러 (0) | 2020.05.02 |
javascript shuffle (0) | 2020.04.12 |
javascript 휴대폰 번호 자동완성 (0) | 2020.04.03 |
javascript - 중복 실행 방지 (0) | 2020.04.03 |
javascript 사업자번호 자동완성 (0) | 2020.03.05 |
리눅스 소유자 파일 찾기 (0) | 2020.03.04 |