码迷,mamicode.com
首页 > 其他好文 > 详细

FastClick 导致聚焦有问题

时间:2018-08-25 18:52:58      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:bsp   dex   get   dsc   ast   tar   解决方法   while   length   

 解决方法:

var x = target;
        var result = []
        while (x.tagName != ‘BODY‘) {
            console.info(x.className, x.className.indexOf("needsClick"))
            if(x.className.indexOf("needsClick")>0) {
                result.push(x);
            }
          x = x.parentNode;
        }
        if(result.length>0)
            return true;

 

技术分享图片

 

FastClick 导致聚焦有问题

标签:bsp   dex   get   dsc   ast   tar   解决方法   while   length   

原文地址:https://www.cnblogs.com/qzccl/p/9534775.html

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