function copy() {
var text = document.getElementById("mine_codes").innerText;
var input = document.createElement('input');
input.setAttribute('id', 'copyInput');
input.setAttribute('value', text);
document.getElementsByTagName('body')[0].appendChild(input);
document.getElementById('copyInput').select();
if (document.execCommand('copy')) {
alert('您已成功复制微信号【'+text+'】,请到微信添加好友中直接粘贴!');}
document.getElementById('copyInput').remove();}