移动端、pc端通用点击复制


点击复制


function copyArticle(event){
    const range = document.createRange();
    range.selectNode(document.getElementById('dd'));
    const selection = window.getSelection();
    if(selection.rangeCount > 0) selection.removeAllRanges();
    selection.addRange(range);
    document.execCommand('copy');
    $(this).text("已复制");
    setTimeout(function(){$("#cp1").text("点击复制")},1000);
}
document.getElementById('cp1').addEventListener('click', copyArticle, false);

posted @ 2019-01-02 12:22  大天狗子  阅读(445)  评论(0编辑  收藏  举报