登录 注册 购物车 15801902527
copyText(text) { var fztext = text; var oInput = document.createElement('input'); oInput.value = fztext; document.body.appendChild(oInput); oInput.select(); // 选择对象 document.execCommand("Copy"); // 执行浏览器复制命令 oInput.className = 'oInput'; oInput.style.display='none'; layer.msg('复制成功',{ icon: 1, time: 1000 }); }