search

Home  >  Q&A  >  body text

javascript - Why can't I input using idangerous.js input?

There is no response when clicking the input box, and the keyboard is not called. There is no problem on the PC side

//全屏滚动
var mySwiper = new Swiper('.swiper-container',{
pagination: '.pagination',
    mode: 'vertical',
    onSlideChangeStart: function(swiper){
        //动画
        var curpage = mySwiper.activeIndex;
        if(!$(".slide"+curpage).hasClass("slide"+curpage+"-show")){
          $(".slide"+curpage).addClass("slide"+curpage+"-show");
        }
        $(".slide"+(curpage-1)).removeClass("slide"+(curpage-1)+"-show");
        $(".slide"+(curpage+1)).removeClass("slide"+(curpage+1)+"-show");
    }
})
  
  js初始化之后就不能输入了
typechotypecho2786 days ago743

reply all(1)I'll reply

  • PHP中文网

    PHP中文网2017-06-12 09:31:27

    Blocked. . . . . Why is there no problem with the PC? It’s strange. . . .

    reply
    0
  • Cancelreply