Copy text from to clipboard

前端 未结 3 1644
迷失自我
迷失自我 2020-12-29 08:02

I\'ve been trying to copy the innerContent of a to my clipboard without success:

HTML



        
3条回答
  •  再見小時候
    2020-12-29 08:29

    simple method
    1)create a input
    2)give style z-index -1 and it will be hide

        var code = $("#copy-to-clipboard-input");
        var btnCopy = $("#btn-copy");
    
        btnCopy.on("click", function () {
            code.select();
            document.execCommand("copy");
        });
                                                                                                 
    
    

提交回复
热议问题