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

javascript - How does one differentiate between Chrome and Safari in an iOS7 useragent string? - Stack Overflow

programmeradmin3浏览0评论

Useragent details are sketchy, or I'm not looking in the right places.

What, in terms of a navigator.userAgent.match(), would differentiate between Chrome and Safari on iOS7, iPad or iPhone?

Useragent details are sketchy, or I'm not looking in the right places.

What, in terms of a navigator.userAgent.match(), would differentiate between Chrome and Safari on iOS7, iPad or iPhone?

Share Improve this question edited Oct 1, 2013 at 3:09 Fabián 5751 gold badge7 silver badges30 bronze badges asked Oct 1, 2013 at 1:43 bugmagnetbugmagnet 7,7798 gold badges72 silver badges140 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 11
var ua = navigator.userAgent;
var matches = ua.match(/^.*(iPhone|iPad).*(OS\s[0-9]).*(CriOS|Version)\/[.0-9]*\sMobile.*$/i);
if (!matches) console.log("Not what we're looking for.");
else {
  console.log(matches[1]);
  if (matches[2] === 'OS 7') console.log(matches[2]);
  else console.log('Not the right version.');
  if (matches[3] === 'CriOS') console.log("Chrome");
  else console.log("Safari");
}

Reference: https://developers.google./chrome/mobile/docs/user-agent

Not sure about iOS, never had a device, but under Windows Chrome has a window.chrome object defined. Check for it existence and if it's there - you're in Chrome.

If similar approach works under iOS (I think it should) then u don't need to check UserAgent.

发布评论

评论列表(0)

  1. 暂无评论