jQuery/Js复制文本到剪贴板
Posted ai10999
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery/Js复制文本到剪贴板相关的知识,希望对你有一定的参考价值。
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>jQuery/Js复制文本到剪贴板</title> <script src="http://apps.bdimg.com/libs/jquery/1.8.3/jquery.js"></script> <script type="text/javascript" src="http://www.jq22.com/demo/clipboard.js-master201703170013/dist/clipboard.min.js"></script> </head> <body> <div id="demo">http://www.baidu.com</div> <button class="btn">复制</button> <script> var content = $("#demo").html(); var clipboard = new Clipboard(‘.btn‘, text: function() return content; ); clipboard.on(‘success‘, function(e) alert("复制成功"); ); clipboard.on(‘error‘, function(e) console.log(e); ); </script> </body> </html>
来自微信公众号:编程社
程序员日常进阶宝典,欢迎关注!
以上是关于jQuery/Js复制文本到剪贴板的主要内容,如果未能解决你的问题,请参考以下文章