Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么我需要为我的元素添加一个触摸事件以启用悬停样式?这是正常的吗?确实感觉有点不靠谱
这是我必须添加的内容以使 :hover 工作,如果我不没有 :hover 样式设置为咖啡脚本抱歉
@button.$el.on('touchstart', ()-> console.log("touch started") )
好的,所以我查看了冷冻豌豆的 Roddy链接的内容,发现您可以将 'ontouchstart=""' 添加到元素以启用悬停样式。
但我意识到,将它添加到超级父级就足够了,它会冒泡到所有子元素,整洁-O!