移动端css active伪类无效果的原因

经过一番查找,之后在mozilla开发社区找到了:active不起作用的答案:

 

[1] By default, Safari Mobile does not use the :active state unless there is a touchstart event handler on the relevant element or on the <body>.

 

看来在iOS系统的移动设备中,需要在按钮元素或body/html上绑定一个touchstart事件才能激活:active状态。

 

document.body.addEventListener('touchstart', function () { //...空函数即可});  

 

将上述事件监听代码加上后,Safari Mobile上就可以看到按钮按下后的切换效果了。

posted on 2015-10-22 14:52  lchecho  阅读(600)  评论(0编辑  收藏  举报

导航