一行代码判断是否移动端
ontouchend
通过判断是否支持触摸,支持触摸的设备大都都是移动端。
if ('ontouchend' in document.body) {
// 移动端
}
这里为什么用 ontouchend
的原因是,ontouchend
相对于 ontouchstart
、ontouchmove
、ontouchcancel
来说长度最短。
userAgent
通过判断用户代理字符串中是否包含 mobile
关键字。
if (/mobile/i.test(navigator.userAgent)) {
// 移动端
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论