您现在的位置是:首页 > JS > 复制内容到剪辑板,亲测可用[记录][js] 网站首页 JS

复制内容到剪辑板,亲测可用[记录][js]

Tom2020-09-09 3514人围观
JS  
简介 暂无
支持的是,把固定内容复制到剪辑板哟
代码如下:方法
function copyUrl(urls){
// var clipBoardContent=this.location.href;
var aux = document.createElement("input");
aux.setAttribute("value", urls);
document.body.appendChild(aux);
aux.select();
var res = document.execCommand("copy");
document.body.removeChild(aux);
if (res) {
alert("复制成功,请发送给好友");
} else{
alert("复制失败,请直接复制网址");
}
}
调用: 获取 内容,传入函数即可
var urls = 'i_am_supreMan';
copyUrl(urls);


打赏本站,你说多少就多少

文章评论