区分平板/智能手机和触摸屏电脑

Differenciate tablet/smartphone and touch-screen computer

本文关键字:触摸屏 电脑 智能手机      更新时间:2023-09-26

我正在开发一个网站,根据用户是在智能手机(触摸屏)上浏览还是在电脑上浏览,提供不同的导航。实际上,检查是通过Modernizr.touch完成的,但我希望触摸屏电脑能像其他电脑一样工作。

谁知道怎么才能达到这个目标?

试试这个:

用于检测触摸设备(包括触摸屏显示器)

var is_touch_device = 'ontouchstart' in document.documentElement;
if(is_touch_device){
   //code for touch devices
}

仅用于检测移动设备:

if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
 //code for touch devices
}