copyUrl(value) {
var ctx = document.createElement("input");
ctx.setAttribute("value", value);
document.body.appendChild(ctx);
ctx.select();
document.execCommand("copy");
document.body.removeChild(ctx);
},
js 带入的参数直接复制
最新推荐文章于 2022-07-06 13:58:09 发布