有啥 UNIQUIE 用户代理可以专门检测 Windows 8 设备?
Posted
技术标签:
【中文标题】有啥 UNIQUIE 用户代理可以专门检测 Windows 8 设备?【英文标题】:What UNIQUIE user agent is there to detect a windows 8 device specifically?有什么 UNIQUIE 用户代理可以专门检测 Windows 8 设备? 【发布时间】:2014-09-16 04:42:18 【问题描述】:例如:
适用于 ipad 或 iphone
函数是iPhone() 返回 ( //检测iPhone (navigator.platform.indexOf("iPhone") != -1) || //检测iPod (navigator.platform.indexOf("iPod") != -1) );
对于安卓:
$(document).ready(function() var isandroid = navigator.userAgent.toLowerCase().indexOf("android");如果(是安卓 > -1) //这是一个Android设备。重定向到安卓版本。 );
【问题讨论】:
我正在寻找的是指向 Windows 8 中触摸事件的特定代码的东西 【参考方案1】:其中任何一个都可以:
var deviceAgent = navigator.userAgent.toLowerCase();
var isTouchPad = deviceAgent.indexOf('touch');
【讨论】:
以上是关于有啥 UNIQUIE 用户代理可以专门检测 Windows 8 设备?的主要内容,如果未能解决你的问题,请参考以下文章