Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些带有桌面和移动访问者的静态页面。是否可以只为移动访问者显示横幅?PHP解决方案也可以。
使用以下方法之一:
PHP移动检测
触摸事件检测:
`
var mobile = !!('createTouch' in document) && (document['createTouch']);
参考
PHP中的轻量级设备检测
触摸事件