小编典典

如何知道一个字符串以 jQuery 中的特定字符串开始/结束?

all

我想知道一个字符串是否以指定的字符/字符串开头或在 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');
}

如果没有任何功能,那么还有其他选择吗?


阅读 71

收藏
2022-06-22

共1个答案

小编典典

一种选择是使用正则表达式:

if (str.match("^Hello")) {
   // do this if begins with Hello
}

if (str.match("World$")) {
   // do this if ends in world
}
2022-06-22