图像上的jquery移动事件taphold

时间:2012-11-06 05:48:15

标签: jquery html jquery-mobile

我为图片添加了'taphold'jquerymobile事件。当我在ipad上点击该图像时,我得到了浏览器抛出的下面的弹出窗口。怎么避免这个?

enter image description here

2 个答案:

答案 0 :(得分:2)

这可能是一个很长的镜头,但尝试CSS规则

-webkit-user-select: none;

可能会阻止弹出窗口出现。

希望有所帮助:)

答案 1 :(得分:1)

这有助于

  img
  {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
   }