使用js点击复制按钮将textarea框隐藏

<style>
#xulgr-bzm-input{
position:absolute;
top:-9999px;
left:-9999px;
}
</style>
<p id="xulgr-bzm-text">被复制的内容</p>
<textarea id="xulgr-bzm-input" readonly="readonly"></textarea>
<dd onclick="xulgrcopyText()" id="mcllts" class="xulgrbtn xulgrbtn-out-hh xulgrbtn-yj">点击快速复制</dd>
<script>
function xulgrcopyText() {
    var text = document.getElementById("xulgr-bzm-text").innerText;
    var input = document.getElementById("xulgr-bzm-input");
    input.value = text;
    input.select();
    document.execCommand("copy");
}
$("#mcllts").on("click", function(){
layer.msg("内容已复制成功");
});
</script>

 

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 共2条

请登录后发表评论

    • 头像一位WordPress评论者0
    • 头像一位WordPress评论者0