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

移动端click失效

时间:2016-10-25 13:49:08      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:标签   opp   tag   事件   执行   touch事件   cti   移动   tar   

移动端使用touch事件,但是会影响到a标签的使用,click事件在touch后执行

先判断节点是否是a标签,之后阻止touch事件冒泡。

document.addEventListener(‘touchend‘,function (e) {
if (e.target.tagName == ‘A‘ || e.target.tagName === ‘button‘){
e.stopPropagation();
}else{
if(!$("#qt").hasClass("hide")){
$("#qt").addClass("hide");
}
}
$(".transport_type ul li a").click(function(){
$("#qt").toggleClass("hide");
});
});

移动端click失效

标签:标签   opp   tag   事件   执行   touch事件   cti   移动   tar   

原文地址:http://www.cnblogs.com/CenreyH/p/5996025.html

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