android - 如何使用 jquery 检测浏览器是 iOS、android 还是桌面?
<p><p>我们的想法是制作一个按钮,上面写着“立即获取应用程序”,其中的链接会根据它是 Android 手机 iPhone 还是没有而改变。我通过 stackexchange 寻找答案,但对于没有 js 经验的人来说,一切都不清楚</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>试试这个,</p>
<p>未知是台式机还是其他手机</p>
<pre><code>function getMobileOperatingSystem() {
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
if( userAgent.match( /iPad/i ) || userAgent.match( /iPhone/i ) || userAgent.match( /iPod/i ) )
{
return 'iOS';
}
else if( userAgent.match( /Android/i ) )
{
return 'Android';
}
else
{
return 'unknown';
}
}
</code></pre>
<p>来源:<a href="https://stackoverflow.com/questions/21741841/detecting-ios-android-operating-system" rel="noreferrer noopener nofollow">Detecting iOS / Android Operating system</a> </p></p>
<p style="font-size: 20px;">关于android - 如何使用 jquery 检测浏览器是 iOS、android 还是桌面?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/32570067/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/32570067/
</a>
</p>
页:
[1]