이번 글에서는 참고할만한 가치가 있는 복사 기능을 구현한 JS의 사례들을 주로 소개하고 있으니, 아래 에디터와 함께 살펴보도록 하겠습니다.
렌더링:
코드는 다음과 같습니다.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JS复制功能</title> <link href="" rel=" rel="external nofollow" stylesheet"> <style> *{ margin:0; padding:0; } input{ border:1px solid #ccc; padding: 5px; width: 200px; } button{ height:32px; } </style> </head> <body> <input type="text"placeholder="里面输入文字"> <button type="button">点击复制</button> <script type="text/javascript" src='http://libs.baidu.com/jquery/2.0.0/jquery.js'></script> <script> $(document).ready(function(){ $('button').click(function(){ $('input').trigger('select'); document.execCommand('copy'); alert('复制成功') }) }) </script> </body> </html>
JS 복사 기능 구현과 관련된 더 많은 글은 PHP 중국어 홈페이지를 주목해주세요!