我想知道一个字符串是否以指定的字符/字符串开头或以jQuery结尾。
例如:
var str = 'Hello World';
if( str starts with 'Hello' ) {
alert('true');
} else {
alert('false');
}
if( str ends with 'World' ) {
alert('true');
} else {
alert('false');
}
如果没有任何功能,那么还有其他选择吗?
使用ES6的新功能
—
Salvador Dali
是的,如果您的用户使用的Edge版本早于Edge,则不要使用ES6。
—
Antares42