iOS下的点击事宜失效解决方法

iOS下的点击事宜失效解决方法

题目形貌

当托付给一个元素增加click事宜时,假如事宜是托付到 documentbody 上,而且托付的元素是默许不可点击的(如 div, span 等),此时 click 事宜会失效。

demo:


<!DOCTYPE html>
<html lang="en">
  <head>
    <title></title>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
    <meta name="robots" content="index,follow"/>
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
    <meta name="apple-mobile-web-app-status-bar-style" content="black"/>
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="format-detection" content="telphone=no, email=no">
    <meta name="renderer" content="webkit">
    <meta http-equiv="Cache-Control" content="no-siteapp" />
    <meta name="HandheldFriendly" content="true">
    <meta name="MobileOptimized" content="320">
    <meta name="screen-orientation" content="portrait">
    <meta name="x5-orientation" content="portrait">
    <meta name="full-screen" content="yes">
    <meta name="x5-fullscreen" content="true">
    <meta name="browsermode" content="application">
    <meta name="x5-page-mode" content="app">
    <meta name="msapplication-tap-highlight" content="no">
    <meta http-equiv="Expires" content="0">
    <meta http-equiv="Pragma" content="no-cache">
    <meta http-equiv="Cache-control" content="no-cache">
    <meta http-equiv="Cache" content="no-cache">
  </head>
  <body>
    <div class="container"></div>
      <div class="target">点击我!</div>
    </div>
    <script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.js"></script>
    <script>
      $(function () {
        // $(document).on('click', '.target', function () {})
        $('body').on('click', '.target', function () {
          alert('我被点击了!!!');
        });
      });
    </script>
  </body>
</html>

解决办法

解决办法有6种:

  • click 事宜直接绑定到目的元素(即 .target ) 上

  • 将目的元素换成 <a> 或许 <button> 等可点击的元素

  • 给目的元素增加一个空的 onclick=""(<div class=”target” onclick=””>点击我!</div>)

  • click 改成 touchendtouchstart(注重加上preventDefault)

  • click 元素托付到非 documentbody 的父级元素上

  • 给目的元素加一条款式划定规矩 cursor: pointer; (cursor: pointer; -webkit-tap-highlight-color: transparent;)

引荐后两种。推想在 Safari 中,不可点击元素的点击事宜是不会冒泡到父级元素的。经由过程增加 cursor: pointer; 使得元素变成了可点击的了。

补充

题目

iOS体系 input 及 input内元素 cursor: pointer; 失效,使得在 iOS体系 上须要借助 cursor 属性才见效的 click 事宜没法触发

解决办法

  • 设置 font-size: 0;

  • click 改成 touchend (注重加上preventDefault)

参考文档

    原文作者:无名小子
    原文地址: https://segmentfault.com/a/1190000009231024
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞