在iOS系统的移动设备中,需要在按钮元素或1body/html
上绑定一个touchstart
事件才能激活:active
状态。
代码如下:
// 1.
document.body.addEventListener(‘touchstart‘,function(){});
// 2. 或者给body添加ontouchstart
<body ontouchstart>
2021-08-05 09:28:58
在iOS系统的移动设备中,需要在按钮元素或1body/html
上绑定一个touchstart
事件才能激活:active
状态。
代码如下:
// 1.
document.body.addEventListener(‘touchstart‘,function(){});
// 2. 或者给body添加ontouchstart
<body ontouchstart>