微信浏览器点击事件不生效怎么解决?

 

H5页面在电脑端,安卓都没有问题,就是在IOS端不能点击;

 

//old—不生效

$(function(){

        $(".tab-tit li").click(function(){

        $(this).addClass("current").siblings().removeClass("current");

        var qq=$(this).index();

        $(".tab-con:eq("+qq+")").show().siblings(".tab-con").hide();

        })

    })

 

//new成功

$(document).on('touchend click','.tab-tit li', function(){

$(this).addClass("current").siblings().removeClass("current");

var qq=$(this).index();

$(".tab-con:eq("+qq+")").show().siblings(".tab-con").hide();

}) ;

 

      

 

文章来源:刘俊涛的博客

欢迎关注,有问题一起学习欢迎留言、评论

原文地址:https://www.cnblogs.com/lovebing/p/10942625.html