美文网首页
js复制指定到剪切板兼容安卓和苹果

js复制指定到剪切板兼容安卓和苹果

作者: 蜗牛呀呀呀呀呀 | 来源:发表于2019-05-02 17:27 被阅读0次
    function cut(){
                    var obj=document.getElementById('fxlj').innerHTML;
                    var obj1=document.getElementById('fxlj1').innerHTML;
                        var input = document.createElement("input");
            input.value = obj+obj1;
            document.body.appendChild(input);
            input.select();
            input.setSelectionRange(0, input.value.length), document.execCommand('Copy');
            document.body.removeChild(input);
           alert('复制成功');

相关文章

网友评论

      本文标题:js复制指定到剪切板兼容安卓和苹果

      本文链接:https://www.haomeiwen.com/subject/mgylrqtx.html