查了下mozilla发现需要添加touchstart
事件才可以,那我们给组件添加个空事件就好了
React
<span onTouchStart={null}>hello</span>
Vue
<span ontouchstart>hello</span>
然后就可以触发:active
伪类了
查了下mozilla发现需要添加touchstart
事件才可以,那我们给组件添加个空事件就好了
<span onTouchStart={null}>hello</span>
<span ontouchstart>hello</span>
然后就可以触发:active
伪类了