赞
踩
- function copyData(data){
- const input = document.createElement('input');
- document.body.appendChild(input);
- input.setAttribute('value', data);
- input.select();
- if (document.execCommand('copy')) {
- document.execCommand('copy');
- alert('复制成功');
- }
- document.body.removeChild(input);
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。