看這個連接 https://juejin.im/entry/58f6d9fb44d904006c121d2e html
移動端:active僞類無效的解決方法:less
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>ide
看來在iOS系統的移動設備中,須要在按鈕元素或body/html上綁定一個touchstart事件才能激活:active狀態。函數
document.body.addEventListener('touchstart', function () { //...空函數便可});