我想知道一个字符串是否以指定的字符/字符串开头或在 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'); }
如果没有任何功能,那么还有其他选择吗?
一种选择是使用正则表达式:
if (str.match("^Hello")) { // do this if begins with Hello } if (str.match("World$")) { // do this if ends in world }