js 복사 붙 여 넣 기 기능 구현

949 단어 전단
이 기능 은 처음 만 들 었 는데, 처음에는 보기 드 문 종이 인 줄 알 았 는데, 나중 에는 사실 아주 간단 하 다 는 것 을 알 게 되 었 다. 하하 하. 왜 간단 하지?아래 를 보시 면 아 실 겁 니 다. 헤헤
1. html 부분

hello,world


2. js 코드 부분

    var btn = document.querySelector('#btn');
    btn.addEventListener('click', function(){
        var input = document.createElement('input'); 
        document.body.appendChild(input);
        var content = document.querySelector('#demoInput').innerHTML;
        input.setAttribute('value', content);
        input.select();
        if (document.execCommand('copy')) {
            document.execCommand('copy');  #execCommand()    ,          ,  input ,textarea   ,
            console.log('    ');
        }
        document.body.removeChild(input);
    })

좋은 웹페이지 즐겨찾기