300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > html 复制文本 点击复制按钮

html 复制文本 点击复制按钮

时间:2020-06-09 22:47:23

相关推荐

html 复制文本 点击复制按钮

var temp = document.createElement('input');temp.value="xx";document.body.appendChild(temp);temp.select();if(document.execCommand('copy')){document.execCommand('copy');document.body.removeChild(temp);window.alert("复制成功");}else{window.alert("复制失败");}

参考:前端 Tips#7 - 用 6 行代码实现文本复制

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。