复制功能 js

示例:

<input class="herf" type="text" v-model="herfUrl" readonly="true" id="herfValue" placeholder="http://">
<el-button @click="copy">复制链接</el-button>

copy () {
var Url2=document.getElementById("herfValue");
Url2.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
},

posted @   小贝馨  阅读(118)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示