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