美文网首页前端
点击复制内容到剪切板并打开微信

点击复制内容到剪切板并打开微信

作者: 这真的是一个帅气的名字 | 来源:发表于2018-10-24 15:16 被阅读3次
    <!DOCTYPE html>
    
    <html>
    <style>
        #biao1{
            display: none !important;
        }
    </style>
    <div cols="20" id="biao1" >444444564564</div>
    <script type="text/javascript">
    
    function copyUrl2()
        {
            var Url2=document.getElementById("biao1").innerText;
            var oInput = document.createElement('input');
            oInput.value = Url2;
            document.body.appendChild(oInput);
            oInput.select(); // 选择对象
            document.execCommand("Copy"); // 执行浏览器复制命令
            oInput.className = 'oInput';
            oInput.style.display='none';
            alert('复制成功');
            window.location.href="weixin://";//打开微信
        }
    </script>
    
    <input type="button" onClick="copyUrl2()" value="点击复制代码" />
    </html>
    
    

    相关文章

      网友评论

        本文标题:点击复制内容到剪切板并打开微信

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