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

fastclick插件 导致 日期插件无法触发

时间:2017-02-13 19:58:05      阅读:203      评论:0      收藏:0      [点我收藏+]

标签: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;
  }

fastclick插件 导致 日期插件无法触发

标签:return   ontouch   amp   eve   fastclick   targe   这一   tcl   条件   

原文地址:http://www.cnblogs.com/yw-ah/p/6395042.html

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