$('.coupon-code').click(function () {
var $aux = $('').val($(this).find('.code-text').html());
// 将元素插入页面进行调用
$(event.currentTarget).after($aux);
// 复制内容
$aux[0].select();
// 将内容复制到剪贴板
document.execCommand("copy");
// 删除创建元素
$aux.remove();
});
$('.coupon-code').click(function () {
var $aux = $('').val($(this).find('.code-text').html());
// 将元素插入页面进行调用
$(event.currentTarget).after($aux);
// 复制内容
$aux[0].select();
// 将内容复制到剪贴板
document.execCommand("copy");
// 删除创建元素
$aux.remove();
});
本文标题:复制功能
本文链接:https://www.haomeiwen.com/subject/ogfmdftx.html
网友评论