手机端如何禁用某个 dom 的 css 及 js 的 :hover 事件
如题,我有一个取消按钮。hover 的时候有效果,点击以后才取消。
在手机下,如果我想取消得点击两次,有什么方法禁止掉这个按钮的 hover 吗?
受受天然呆
10 years, 1 month ago
Answers
同时监听
mouseenter
和
touchstart
事件,在移动端,
touchstart
的监听器会覆盖
mouseenter
的监听器。
http://jsbin.com/bomavi/1/edit?js,output
紫色D風信子
answered 10 years, 1 month ago