标签:return ontouch amp eve fastclick targe 这一 tcl 条件
fastclick源文件中有这一行,加个if条件就可以了
当touchend的时候我们判断一下他的event.target到底是啥,如果是date我们就不玩了,不要你fastclick了,用原生的去触发不就OK了,来个return false;
我的代码:
FastClick.prototype.onTouchEnd = function(event) {
/*加上这个*/
if(event.target.hasAttribute("type") && event.target.getAttribute("type") == "date"){//type 随便你选哪个
return false;
}
标签:return ontouch amp eve fastclick targe 这一 tcl 条件
原文地址:http://www.cnblogs.com/yw-ah/p/6395042.html