ios端swiper滑动时input光标错位问题解决

监测swiper的touchend事件,将input手动取消焦点(用touchstart事件滑动会卡顿,不建议)

var mySwiper = new _Swiper(".mySwiper", {
        autoplay: false,
        loop: false,
        direction: "vertical",
        autoHeight: true, //自动高度。设置为true时,wrapper和container会随着当前slide的高度而发生变化
        height: window.innerHeight, // 高度设置,占满设备高度
        on: {
          touchEnd: function(event) {
            document.getElementById("inputList").blur();
          },
        },
      });

 

你可能感兴趣的:(H5,html5)