美文网首页
href="javascript:" js剪贴板

href="javascript:" js剪贴板

作者: 大乔是个美少女 | 来源:发表于2018-03-19 15:59 被阅读0次
<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('复制成功');
    }
</script>
<div cols="20" id="biao1">12345678</div>
<input type="button" onClick="copyUrl2()" value="点击复制代码" />
href="javascript:"
href="javascript:void(0)"
href="javascript:void:;"
image.png
image.png

https://segmentfault.com/q/1010000006150353

相关文章

网友评论

      本文标题:href="javascript:" js剪贴板

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