jQuery click事件在iPhone浏览器上不起作用(已经尝试过cursor:pointer;)

时间:2019-04-18 02:25:47

标签: jquery ios css click

我想在我的wordpress网站中的锚标签上设置一个click事件。除了iPhone,我可以在所有设备(PC,Android手机,平板电脑)上使用它。

我尝试将锚标记的“光标”设置为“指针”。

我已经尝试了所有可以在SO上找到的东西,但似乎没有任何效果:/

任何帮助将不胜感激。

$("a[href^=#]").on('click touchstart', function(e) {
      e.preventDefault(); var dest = $(this).attr('href');
      console.log(dest);
      $('html,body').animate({ scrollTop: $(dest).offset().top }, 'slow');
    });
.scroller {
        cursor: pointer;
    }
<a href="#res-mobile" class="scroller" onclick="void(0)">
  <div id="mobile-hero-book" class="book-now-btn">Book a Car</div>
</a>

2 个答案:

答案 0 :(得分:0)

因此,如果我理解您的意思,而不是使用href,可以尝试使用onclickJS中使用如下函数:

function ANYTHING() {
   $("a[href^=#]").on('click touchstart', function(e) {
   e.preventDefault(); var dest = $(this).attr('href');  
   console.log(dest);
   $('html,body').animate({ scrollTop: $(dest).offset().top }, 'slow');
  });
}
.scroller {
            cursor: pointer;
        }
<a class="scroller" onclick="void(0)" onclick='ANYTHING('>
   <div id="mobile-hero-book" class="book-now-btn">Book a Car</div>
</a>

请让我知道是否有帮助!如果需要,您仍可以将href保留在html中!

答案 1 :(得分:0)

尝试我写的这个小jQuery插件,解决您遇到的问题:

$(document).ready(function() {
  $("#stupid-button").touch(function() {
    console.log("The stupid button was pressed!");
  });
});

$.fn.touch = function(callback) {
  var touch = false;
  $(this).on("click", function(e) {
    if (!touch) {
      console.log("Click detected!");
      let callbackReal = callback.bind(this);
      callbackReal(this, e);
    } else {
      touch = true;
    }
    touch = false;
  });
  $(this).on("touchstart", function(e) {
    $(this).blur();
    if (typeof e.touches != typeof undefined) {
      e.preventDefault();
      touch = true;
      console.log("Touch detected!");
      let callbackReal = callback.bind(this);
      callbackReal(this, e);
    }
  });
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button id="stupid-button">Click Me</button>

编辑1:

已删除

编辑2:

我误解了这个问题。上面的代码在iOS设备上仍然有用,但是这是处理定位标记的方法。摆脱#id href:

$(document).ready(function() {
  $(".anchor").touch(function() {
    var targ = $("#" + $(this).data('targ'));
    $('html,body').animate({
      scrollTop: targ.offset().top
    }, 'slow');
  });
});

$.fn.touch = function(callback) {
  var touch = false;
  $(this).on("click", function(e) {
    if (!touch) {
      console.log("Click detected!");
      let callbackReal = callback.bind(this);
      callbackReal(this, e);
    } else {
      touch = true;
    }
    touch = false;
  });
  $(this).on("touchstart", function(e) {
    $(this).blur();
    if (typeof e.touches != typeof undefined) {
      e.preventDefault();
      touch = true;
      console.log("Touch detected!");
      let callbackReal = callback.bind(this);
      callbackReal(this, e);
    }
  });
}
#target-ele {
  margin-top: 1200px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

<a href="javascript:void(0);" class="anchor" id="link-1" data-targ="target-ele">Click Me</a>

<div id="target-ele">
  <p>This is the target container</p>
</div>