复制功能

$('.coupon-code').click(function () {

var $aux = $('').val($(this).find('.code-text').html());

// 将元素插入页面进行调用

    $(event.currentTarget).after($aux);

// 复制内容

    $aux[0].select();

// 将内容复制到剪贴板

    document.execCommand("copy");

// 删除创建元素

    $aux.remove();

});

你可能感兴趣的:(复制功能)