复制功能


好长时间没写过了,随手写一个吧,证明俺还是程序元。

HTML:

class="info_right">
class="invitation_tit"> {{$t('anquan.tuiguang[27]')}}
"link" v-model="myInfo.invitationCode" readonly /> class="copy" @click="copy('link')">{{$t('fiatOrder.main[38]')}}

js:

//复制信息
    copy(whitch) {
      var _this = this;
      var ele = document.getElementById(whitch);
      ele.select();
      document.execCommand("Copy");
      _this.$public.msg(_this.$t("anquan.tuiguang[16]"), "success", _this); //复制成功
    },