0

我使用 Bootstrap 编写了一个响应式网站,并在桌面上的图像上使用 jQuery 进行了鼠标悬停,但在 Ipad 上,当我单击这些图像时,我的功能 Mouseover 可以工作,因此存在错误。

我希望在我的 ipad 网站上这个功能 Mouseover 不会启动。我该怎么做?

这是我的代码:

  $('.image a img').mouseover(function(){
  $(this).next().fadeIn();
  });

  $('.texte').mouseout(function(){
  $(this).fadeOut();
  });
4

1 回答 1

3

也许尝试在这个问题中找到的答案

if(!navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/)) {
  $('.image a img').mouseover(function(){
  $(this).next().fadeIn();
  });

  $('.texte').mouseout(function(){
  $(this).fadeOut();
  });
}
于 2013-07-11T07:34:13.470 回答