js Strong.prototype.endswithは、ある文字列が別の文字列で終わるかどうかを確認します.

1261 ワード

参照リンク   https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Object/String/ends With
構文:
ある文字列が別の文字列で終わるかどうかを確認します.
String.prototype.endswith(search Str) [、position])
備考:
positionはStringクエリの位置で、デフォルトはString.lengthです.
eg:
var file_show = '/data/www/liusen/php/girl.gif';
console.log(file_show.endsWith('.gif')); // true
console.log(file_show.endsWith('gi')); // false