码迷,mamicode.com
首页 > 其他好文 > 详细

点击按钮,复制文本

时间:2020-11-20 12:20:18      阅读:20      评论:0      收藏:0      [点我收藏+]

标签:body   ati   man   create   tde   count   fun   tap   rev   

$(‘body‘).on(‘tap‘, ‘.copy-btn‘, function (e) {
  e.preventDefault();
  e.stopPropagation();
  const range = document.createRange();
  range.selectNode($(this).prev(‘.text‘)[0]);
  const selection = window.getSelection();
  if (selection.rangeCount > 0) {
    selection.removeAllRanges();
  }
  selection.addRange(range);
  document.execCommand(‘copy‘);
  alert(‘运单号已复制!‘);
});

点击按钮,复制文本

标签:body   ati   man   create   tde   count   fun   tap   rev   

原文地址:https://www.cnblogs.com/ZerlinM/p/13985103.html

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