有什么方法可以在Safari上创建“复制到剪贴板”按钮吗?这是我的代码,但是在Safari中不起作用。
<input type="text" id="copy"/>
<button class="copy-button" id="button-copy">Copy</button>
<script>
jQuery(document).ready(function($){
document.querySelector('#button-copy').addEventListener('click',
function(e) {
$(this).prev().select();
document.execCommand("copy");
});
});
</script>