web-dev-qa-db-ja.com

iOS Chrome=検出

JavaScriptコードを使用します

if( (Android|webOS|iPhone|iPad|iPod|BlackBerry).test(navigator.userAgent) ) {}

モバイルデバイスの検出用ですが、Chrome iOSでは検出されません。検出する方法はありますか?ありがとう。

40
cr1msaun

Google Developers によると、UA文字列は次のようになります。

Mozilla/5.0 (iPhone; U; CPU iPhone OS 5_1_1 like Mac OS X; en) AppleWebKit/534.46.0 (KHTML, like Gecko) CriOS/19.0.1084.60 Mobile/9B206 Safari/7534.48.3

CriOSの代わりにVersionと言う点でiOS Safariと異なるところ。したがって、この:

if(navigator.userAgent.match('CriOS'))

それを行う必要があります。

107

単純な真/偽の答えが必要な場合:

if(/CriOS/i.test(navigator.userAgent) &&
/iphone|iPod|ipad/i.test(navigator.userAgent)){
    return true;
}else{
    return false;
}
7
Chen_Wayne

51Degreesの無料のクラウドベースのソリューションを使用して、この情報を取得できます。無料のクラウドサービスの一部として、Chrome for iOsを含むBrowserNameプロパティにアクセスできます。

使用できるサンプルコードを以下に示します。無料のクラウドキーを取得するには、こちらのストアページをご覧ください https://51degrees.com/products/store/rvdsfcatid/cloud-device-detection-7

<!DOCTYPE html>
<html>
<body>
<p id="id01"></p>
<script>
var xmlhttp = new XMLHttpRequest();
<!-- Insert Cloud key here. -->
var key = "Licence Key"
<!-- Receives UserAgent from clients connection. -->
var ua = window.navigator.userAgent;

<!-- Lists the properties required. -->
var url = ("https://cloud.51degrees.com/api/v1/"+key+"/match?user-agent="+ua+"&Values=\
    BrowserName");

<!-- Parses the JSON object from our cloud server and returns values. -->
xmlhttp.onreadystatechange = function(){
    if ( xmlhttp.readyState == 4 && xmlhttp.status == 200){
        var match = JSON.parse(xmlhttp.responseText);
        var text = ""
        document.getElementById("id01").innerHTML=\
        "UserAgent:"+ua+"</br>"+
        "BrowserName:"+match.Values.BrowserName;
    }
}       
<!-- Sends request to server. -->
xmlhttp.open("GET", url, true);
xmlhttp.send();     
</script>
</body>
</html>

JavaScript Cloud APIの使用の詳細については、こちらのチュートリアルをご覧ください https://51degrees.com/Developers/Documentation/APIs/Cloud-API/JavaScript-Cloud

開示:私は51Degreesで働いています

0
Zarwalski