微信瀏覽器點擊事件不生效怎么解決?


 

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();

}) ;

 

      

 

文章來源:劉俊濤的博客

歡迎關注,有問題一起學習歡迎留言、評論


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM