Check if string begins with something? [duplicate]

2019-01-12 17:08发布

Possible Duplicate:
Javascript StartsWith

I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a class for an element for pathnames that start in a certain way...

So,

var pathname = window.location.pathname;  //gives me /sub/1/train/yonks/459087

I want to make sure that for every path that starts with /sub/1, I can set a class for an element...

if(pathname ^= '/sub/1') {  //this didn't work... 
        ... 

6条回答
做自己的国王
2楼-- · 2019-01-12 17:19

Have a look at JavaScript substring() method.

查看更多
再贱就再见
3楼-- · 2019-01-12 17:23

First, lets extend the string object. Thanks to Ricardo Peres for the prototype, I think using the variable 'string' works better than 'needle' in the context of making it more readable.

String.prototype.beginsWith = function (string) {
    return(this.indexOf(string) === 0);
};

Then you use it like this. Caution! Makes the code extremely readable.

var pathname = window.location.pathname;
if (pathname.beginsWith('/sub/1')) {
    // Do stuff here
}
查看更多
来,给爷笑一个
4楼-- · 2019-01-12 17:28
String.prototype.startsWith = function(needle)
{
    return this.indexOf(needle) === 0;
};
查看更多
别忘想泡老子
5楼-- · 2019-01-12 17:31

You can use string.match() and a regular expression for this too:

if(pathname.match(/^\/sub\/1/)) { // you need to escape the slashes

string.match() will return an array of matching substrings if found, otherwise null.

查看更多
女痞
6楼-- · 2019-01-12 17:37

Use stringObject.substring

if (pathname.substring(0, 6) == "/sub/1") {
    // ...
}
查看更多
混吃等死
7楼-- · 2019-01-12 17:37

A little more reusable function:

beginsWith = function(needle, haystack){
    return (haystack.substr(0, needle.length) == needle);
}
查看更多
登录 后发表回答