jsはコピー貼り付け機能を実現します.

870 ワード

この機能は初めてです.せっかくの紙だと思いましたが、実は簡単です.ハハハ.なぜ簡単ですか?下を見れば分かります.
1.部分

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);
    })