$('.coupon-code').click(function () {
var $aux = $('').val($(this).find('.code-text').html());
// 將元素插入頁面進(jìn)行調(diào)用
? ? $(event.currentTarget).after($aux);
// 復(fù)制內(nèi)容
? ? $aux[0].select();
// 將內(nèi)容復(fù)制到剪貼板
? ? document.execCommand("copy");
// 刪除創(chuàng)建元素
? ? $aux.remove();
});