javascript – 无法专注于Bootstrap Carousel中的输入字段

前端之家收集整理的这篇文章主要介绍了javascript – 无法专注于Bootstrap Carousel中的输入字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我无法专注于bootstrap轮播中的任何输入字段.

无论您点击多少次,输入字段都不会聚焦.

我甚至尝试将z-index赋予输入字段,但它仍然没有得到集中.

您可以通过运行下面的代码段来检查错误.

$(document).ready(function(){

$(".carousel").swipe({

  swipe: function(event,direction,distance,duration,fingerCount,fingerData) {

    if (direction == 'left') $(this).carousel('next');
    if (direction == 'right') $(this).carousel('prev');

  },allowPageScroll:"vertical"

});

});
.carousel-indicators {
  position: absolute !important;
  bottom: -100px !important;
}

.carousel-indicators li {
  background-color: green;
  border: 1px solid green !important;
}

.carousel-inner>.item>div {
  padding: 30px;
}

.carousel-inner>.item>div>div {
  text-align: center;
}
Box">
          
最佳答案
将touchSwipe版本从1.6.18更改为1.6.4
原文链接:https://www.f2er.com/html/425634.html

猜你在找的HTML相关文章