标签: php modernizr
我在我的网站上使用modernizr来检测设备是否是触控设备。在我的PHP中,我想使用条件语句来显示根据用于访问站点的设备是否具有触摸功能而更改的特定信息。
如果设备不支持触摸,则Modernizr会将类no-touchevents添加到我的<html>标记中。如何编写PHP条件以显示此类的不同内容?我知道在jQuery中我可以使用if ($(ele).hasClass('no-touchevents')) { },但我不知道如何用PHP实现这个目标
no-touchevents
<html>
if ($(ele).hasClass('no-touchevents')) { }