javascrpit实现点击复制剪切板
function copy(url){ //var url = '';//内容 var oInput = document.createElement('input'); oInput.value = url; document.body.appendChild(oInput); oInput.select(); document.execCommand("Copy"); oInput.className = 'oInput'; oInput.style.display = 'none'; $(".oInput").remove(); //webalter($(this).text()+'成功', 0, 1, 1500);//提示信息 }
不用重来才叫快;能够积累才叫多