javascript 黑客 - 修复iOS上的双击

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 黑客 - 修复iOS上的双击相关的知识,希望对你有一定的参考价值。


<!-- Smooth Scroll & Disabling Double-tap -->
<script type="text/javascript">
  jQuery(document).ready(function($){
     $('a[href*=#]:not([href=#])').on('click touchend', function(e) {
      if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
        var target = $(this.hash);
        target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
        if (target.length) {
          $('html,body').animate({
            scrollTop: target.offset().top
          }, 700);
          return false;
        }
      }
    });
  });
</script>

 <!-- Note: -->
  <!-- 上のコードは、以下の二つのスクリプトを組み合わせたもの、以下の二つは単独だと働くが、両方使うと、Smooth Scroll が働かない。 -->

  <!-- Smooth Scroll Only -->
  <script type="text/javascript">
    jQuery(document).ready(function($){
      $('a[href*=#]:not([href=#])').click(function() {
        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
          var target = $(this.hash);
          target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
          if (target.length) {
            $('html,body').animate({
              scrollTop: target.offset().top
            }, 700);
            return false;
          }
        }
      });
    });
  </script>

  <!-- Disable Double-tap Issue on iOS Only -->
  <script type="text/javascript">
    $(document).ready(function() {

       $('a').on('click touchend', function(e) {
          var el = $(this);
          var link = el.attr('href');
          window.location = link;
       });

    });
  </script>

以上是关于javascript 黑客 - 修复iOS上的双击的主要内容,如果未能解决你的问题,请参考以下文章

iOS UIWebview,禁用双击,允许点击 WKWebview

检测 TableView JavaFX 行上的双击

如何检测视图上的双击? [复制]

JList 元素上的双击事件

检测 SKNode 上的双击

Objective-c:如何检测视图上的双击?