Richard Tyson

导航

移动端ios下H5的:active样式失效的解决方法

在body上绑定一个touchstart事件,空函数就行:

1 document.body.addEventListener('touchstart', function(){}, false)

或者在body标签上加上ontouchstart=""也可以:

<body ontouchstart="">

  

posted on 2018-06-18 12:21  tyson  阅读(290)  评论(0编辑  收藏  举报