FastClick 致使聚焦有問題

 解決方法:spa

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;

 

相關文章
相關標籤/搜索