直接上代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>target-div</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
    <!-- 1. Define some markup -->
    <div>hello</div>
    <button class="btn" data-clipboard-action="copy" data-clipboard-target="div">Copy</button>

    <!-- 2. Include library -->
    <script src="../dist/clipboard.min.js"></script>

    <!-- 3. Instantiate clipboard -->
    <script>
    var clipboard = new ClipboardJS('.btn');

    clipboard.on('success', function(e) {
        console.log(e);
    });

    clipboard.on('error', function(e) {
        console.log(e);
    });
    </script>
</body>
</html>

demo:点击下载

相关文章:

  • 2021-12-03
  • 2021-11-01
  • 2018-08-31
  • 2021-12-03
  • 2021-11-01
  • 2021-11-17
  • 2021-10-01
  • 2021-11-23
猜你喜欢
  • 2021-12-10
  • 2021-08-30
  • 2021-11-04
  • 2021-12-03
  • 2021-10-12
  • 2021-11-23
  • 2021-12-28
  • 2021-12-20
相关资源
相似解决方案