我知道这个问题已经问了很多遍,但是我找不到解决方法。我有一个Wordpress网站,上面有一个轮播列表,您可以在这里看到这些帖子:http://fundacioncb.es。问题是,当我单击轮播列表中的任何项(如帖子)时,都不会发生任何事情,因为有东西阻止了它。在我的Chrome浏览器的控制台中显示:
就像您看到的一样,我认为是因为touchstart
和touchmove
事件。
我试图将其插入到标题中,但没有成功:
<script>
$(function(){
addEventListener('touchstart', this.callPassedFuntion, { passive: false })
}
</script>