码迷,mamicode.com
首页 > 移动开发 > 详细

a:hover伪类在ios移动端浏览器内点击无效的解决方法

时间:2018-06-12 22:27:44      阅读:436      评论:0      收藏:0      [点我收藏+]

标签:ios系统   需要   tar   over   http   inf   rip   安卓   dde   

 安卓页面可以打开,苹果端hover上去打不开;hover的没有方法没有激活;

 

a:hover 设置的样式在ios系统的浏览器内显示不出来,看来在iOS系统的移动设备中,需要在按钮元素或body/html上绑定一个touchstart事件才能激活:active状态。

代码如下:

document.body.addEventListener(‘touchstart‘,function(){});
  • 1

或者给body添加ontouchstart

<body ontouchstart>

技术分享图片

 

原链接:https://blog.csdn.net/xjtarzan/article/details/53337927

a:hover伪类在ios移动端浏览器内点击无效的解决方法

标签:ios系统   需要   tar   over   http   inf   rip   安卓   dde   

原文地址:https://www.cnblogs.com/fengyuzhen34/p/9175126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!