Detecting Chrome OS with Javascript

前端 未结 2 1553
小鲜肉
小鲜肉 2021-01-23 13:23

I want to detect Chrome OS with Javascript, and I\'m using navigator.userAgent for this. Now, I\'m running Chrome OS, and my navigator userAgent is



        
相关标签:
2条回答
  • 2021-01-23 14:03

    What it's complaining about is that you have an ( with no matching ). In a regular expression, ( and ) define capture groups and have to be balanced. If you want to match an actual ( or ), you have to escape it with a backslash.

    But there are several other issues. It doesn't make sense to have ^ ("beginning of input") anywhere but the beginning of the expression, for instance.

    But I don't think anything else puts CrOS in the user agent, so perhaps simply:

    if (/\bCrOS\b/.test(navigator.userAgent)) {
        // yes, it is (probably, if no one's mucked about with their user agent string)
    } else {
        // No, it isn't (probably, if no one's mucked about with their user agent string)
    }
    

    The \b are "word boundaries" so we don't match that string in the middle of a word. Note that I left it case-sensitive.


    Side note: I find https://regex101.com/#javascript (which I am not in any way affiliated with) quite useful for debugging regular expressions.

    Side note #2: The above is useful if you really do need to detect ChromeOS, but if it's just a feature you need to check for, as jfriend00 points out, feature detection may be the better way to go.

    0 讨论(0)
  • 2021-01-23 14:14

    How about this?

    var chromeOS = /(CrOS)/.test(navigator.userAgent);
    

    Because a Chrome OS user agent looks like this:

    Mozilla/5.0 (X11; CrOS i686 0.12.433) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.77 Safari/534.30
    

    And filtering out "CrOS" is a good solution.

    0 讨论(0)
提交回复
热议问题