js复制

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();}
上一篇:HTML5——WebSocket:基于Node.js的网络聊天室


下一篇:用css样式修改select下拉标签的默认箭头样式