[JavaScript]文字列が指定されていますか?
533 ワード
// str
// function js ,
if (typeof String.prototype.startsWith != 'function') {
String.prototype.startsWith = function (str){
return this.slice(0, str.length) == str;
};
}
// str
if (typeof String.prototype.endsWith != 'function') {
String.prototype.endsWith = function (str){
return this.slice(-str.length) == str;
};
}
日付:javascriptで文字列が指定された文字列で開始または終了するかどうかを判定します.