我使用 Bootstrap 编写了一个响应式网站,并在桌面上的图像上使用 jQuery 进行了鼠标悬停,但在 Ipad 上,当我单击这些图像时,我的功能 Mouseover 可以工作,因此存在错误。
我希望在我的 ipad 网站上这个功能 Mouseover 不会启动。我该怎么做?
这是我的代码:
$('.image a img').mouseover(function(){
$(this).next().fadeIn();
});
$('.texte').mouseout(function(){
$(this).fadeOut();
});