Đoạn mã copy text tới clipboard
14/11/2021 04:00 608
Đoạn mã copy text tới clipboard, anh chị thường gặp khi copy link youtube ne, zalo.. ngay sau đây là code:
Chế biến lại thành cái riêng của anh chị nha
1. Code html
|
<p id="copy_link_referral_text"> URL giới thiệu của bạn: <strong>https://abc.com.vn/dang-ky/?ref=fcwordpress</strong> </p> <p><button type="button" class="button" id="copy_link_referral">Copy</button></p> |
2. Code js
|
<script> jQuery(function($){ $(document).on('click','#copy_link_referral',function(e){ e.preventDefault(); var copyText = $('#copy_link_referral_text').find('strong').text(); navigator.clipboard.writeText(copyText); alert("Đã copy url giới thiệu: " + copyText); }); }); </script> |
Các bài viết khác có thể hữu ích với bạn