antd-mobile modal.alert组件iOS10兼容性问题

问题:antd-mobile中的 modal.alert在iOS10中失效的问题

原因:移动设备上的浏览器默认会在用户点击屏幕大约延迟300毫秒后才会触发点击事件,这是为了检查用户是否在做双击。为了能够立即响应用户的点击事件,才有了FastClick。

解决方案:fastclick

1.npm install fastclick

2.在项目入口文件index中引入

import FastClickfrom "fastclick";

FastClick.attach(document.body);

你可能感兴趣的:(antd-mobile modal.alert组件iOS10兼容性问题)