美文网首页
复制功能

复制功能

作者: 梦的怒放_c3b4 | 来源:发表于2018-05-16 17:02 被阅读0次

    $('.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