Voglio sapere se una stringa inizia con il carattere / stringa specificato o termina con esso in jQuery.
Per esempio:
var str = 'Hello World';
if( str starts with 'Hello' ) {
alert('true');
} else {
alert('false');
}
if( str ends with 'World' ) {
alert('true');
} else {
alert('false');
}
Se non c'è alcuna funzione, allora qualche alternativa?