码迷,mamicode.com
首页 > Web开发 > 详细

js 复制 浏览器 点击 copy

时间:2018-05-03 19:30:16      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:script   选中   login   session   中文   ecc   man   cti   span   

 

<textarea id="input" style="width:100%">{:url(‘login/index‘,[‘invite‘=>$Think.session.user.uid], ‘html‘, true)}</textarea>

 

<script>
    function copyText() {
      
      var input = document.getElementById("input");
      
      input.select(); // 选中文本
      document.execCommand("copy"); // 执行浏览器复制命令

    }
</script>

 

js 复制 浏览器 点击 copy

标签:script   选中   login   session   中文   ecc   man   cti   span   

原文地址:https://www.cnblogs.com/shaoing/p/8986576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!