复制内容到剪切板,兼容移动端

function copyText(d) {
    var c = document.createElement("textarea");
    c.style.position = "absolute";
    c.style.left = "-9999px";
    c.style.bottom = "0";
    document.body.appendChild(c);
    c.textContent = d;
    c.focus();
    c.setSelectionRange(0, c.value.length);
    var a;
    try {
        a = document.execCommand("copy")
    } catch(b) {
        a = false
    }
    document.body.removeChild(c);
    return a
}

 uc不得行

posted @ 2017-05-03 12:51  天色已晚2016  阅读(134)  评论(0编辑  收藏  举报