我无法专注于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