if(window.matchMedia("(max-width: 767px)").matches){
  alert("这是一个移动设备。");
}else {
  alert("这是平板电脑或台式电脑。");
}

亲测有效。

文章来源:https://www.php.cn/jishu/html/413860.html

05-07 15:11