how to identify if user agent is windows 8 tablet?

烈酒焚心 提交于 2019-12-19 03:38:10

问题


I have a web application. I my JavaScript, I am identifying devices by user agent string as follows:

_android = navigator.userAgent.toLowerCase().indexOf("android");

_iOS = navigator.platform.indexOf("iPhone");

My task is to identify if device is win8 tablet or not?

I have already seen this post. But, the string "Windows NT" is likely to appear in useragent on all the PC browsers. So, I need to find out a client side way of identifying if device is win8 tablet?

Any thoughts?


回答1:


You can't identify if it is a tablet or not, but you can identify if it has touch or not. This is the IE user agent here:

Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0; Touch)

The touch at the end is only present if touch is.

However, if you are just trying to identify touch capabilities, you should use feature detection rather than user agent sniffing.




回答2:


User-agent string (Windows) : http://msdn.microsoft.com/en-us/library/ie/hh920767(v=vs.85).aspx



来源:https://stackoverflow.com/questions/14226534/how-to-identify-if-user-agent-is-windows-8-tablet

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!