伪类 :active 生效
要CSS伪类 :active
生效,只需要给 document 绑定 touchstart
或 touchend
事件
1 2 3 4 5 6 7 8 9 10 11 12 |
<style> a { color: #000; } a:active { color: #fff; } </style> <a herf=foo >bar</a> <script> document.addEventListener('touchstart',function(){},false); </script> |