点击后直接复制并跳转微信界面**
<div>
<div onclick="copywx()">
<a href="weixin://"><span id="wechat_id">136xxxx6510</span>(微信同号),复制跳转微信</a>
</div>
</div>
<script>
function copywx() {
const range = document.createRange();
range.selectNode(document.getElementById('wechat_id'));
const selection = window.getSelection();
if (selection.rangeCount > 0) selection.removeAllRanges();
selection.addRange(range);
document.execCommand('copy');
alert("复制成功!");
}
</script>