项目需要,自己用execCommand()方法写了一个,目前在IE,chrome,fireFox 都正常运行;
话不多说,直接代码:
HTML部分 <input class="addresNm" type="text" value="这里是等待被复制的东东" /> <input class="copyBtn" type="button" value="点击复制"/> Js部分 <script> $(‘.copyBtn‘).click(function () { var Input = $(‘.addresNm‘); Input.focus() Input.select() try{ document.execCommand(‘copy‘); }catch(e){} }) </script>
代码大概意思,具体需要实际需要而写;此用于个人记录总结。
时间: 2024-10-14 04:00:12