起楚永世承,教崇忠孝,志尚宽平
清醒时做事,迷茫时读书,独处时思考,烦躁时运动,得意时淡然,失意时坦然,忙碌时专注,闲暇时蓄力。

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);//提示信息
        }
                

 

posted @ 2021-11-26 15:39  一蹴而就  阅读(67)  评论(0编辑  收藏  举报