ios复制文字到剪切板

补充上篇博客 中出现的ios复制不可用的问题需要组合使用

 

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>

<body>
  <span id="data">复制我到剪贴板</span>
  <button class="button" type="button" id="button">点击复制</button>


  <script src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.js"></script>
  <script>
    $("#button").click(function () {
      if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) { //ios  
        var copyDOM = document.querySelector('#data'); //要复制文字的节点    
        var range = document.createRange();
        // 选中需要复制的节点    
        range.selectNode(copyDOM);
        // 执行选中元素    
        window.getSelection().addRange(range);
        // 执行 copy 操作    
        var successful = document.execCommand('copy');
        try {
          var msg = successful ? 'successful' : 'unsuccessful';

          console.log('copy is' + msg);
        } catch (err) {
          console.log('Oops, unable to copy');
        }
        // 移除选中的元素    
        window.getSelection().removeAllRanges();
      } else {

        console.log( "android不支持此方式复制")
      }
    });

  </script>


</body>

</html>

 

转载于:https://www.cnblogs.com/shuaitong/p/8758830.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值