100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > js兼容安卓与ios的复制到粘贴板功能

js兼容安卓与ios的复制到粘贴板功能

时间:2024-07-04 15:26:42

相关推荐

js兼容安卓与ios的复制到粘贴板功能

第一种使用clipboard:

上面也说了,已经迁移到clipboard-polyfill

兼容性:

第二种使用clipboard-polyfill:

github地址:/lgarron/clipboard-polyfill

兼容性:

第三种使用原生JS

HTML

<button onClick="copy('把内容读到这里')" >复制链接</button>

JS

<script>function copy(message) {var input = document.createElement("input");input.value = message;document.body.appendChild(input);input.select();input.setSelectionRange(0, input.value.length), document.execCommand('Copy');document.body.removeChild(input);}</script>

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