最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - how to identify if user agent is windows 8 tablet? - Stack Overflow

programmeradmin3浏览0评论

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?

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?

Share Improve this question edited May 23, 2017 at 10:27 CommunityBot 11 silver badge asked Jan 9, 2013 at 0:38 hrishikeshp19hrishikeshp19 9,03627 gold badges82 silver badges144 bronze badges 1
  • This is not exactly an answer to your question, but if you're identifying devices in order to adapt to their capabilities, you should query their capabilities instead. Google 'browser feature detection' – GreyBeardedGeek Commented Jan 9, 2013 at 0:43
Add a ment  | 

2 Answers 2

Reset to default 5

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 (patible; 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.

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

发布评论

评论列表(0)

  1. 暂无评论