`
sanshizi
  • 浏览: 83358 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论

通过ua检测浏览页面的设备是phone还是tablet

阅读更多
通过ua检测浏览页面的设备是phone还是tablet


function isPhone(ua) {
	var isMobile = /Mobile(\/|\s)/.test(ua);

	// Either:
	// - iOS but not iPad
	// - Android 2
	// - Android with "Mobile" in the UA

	return /(iPhone|iPod)/.test(ua) ||
			  (!/(Silk)/.test(ua) && (/(Android)/.test(ua) && (/(Android 2)/.test(ua) || isMobile))) ||
			  (/(BlackBerry|BB)/.test(ua) && isMobile) ||
			  /(Windows Phone)/.test(ua);
}

function isTablet(ua) {
	return !isPhone(ua) && (/iPad/.test(ua) || /Android/.test(ua) || /(RIM Tablet OS)/.test(ua) ||
		(/MSIE 10/.test(ua) && /; Touch/.test(ua)));
}

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics