JS 플러그 인 클립 보드.js 원 키 복사 붙 여 넣 기 기능 구현

붙 여 넣 기 기능 을 원 키 로 복사 하려 면 경량급 JS 플러그 인:clipboard.js 를 사용 해 야 합 니 다.
홈 페이지 주소
로 컬 에 다운로드 한 후 항목 에 넣 고 직접 인용 하면 됩 니 다.구체 적 인 실현 코드 는 다음 과 같다.

<!DOCTYPE html>
<html>
 <head>
 <meta charset="UTF-8">
 <title>      </title>
 <style>
 .transfer {
 width: 90%;
 margin: 20px auto;
 font-size: 18px;
 }
 .transfer button {
 margin-top: -5px;
 float: right;
 margin-left: 10px;
 background-color: rgb(3, 169, 244);
 width: 30%;
 height: 25px;
 font-size: 14px;
 color: white;
 border: 0;
 border-radius: 8%;
 }
 </style>
 </head>
 
 <body>
 <div class="transfer">
    :<span id="zfb_account">11111111111</span>
 <button onclick="copy1()" data-clipboard-action="copy" data-clipboard-target="#zfb_account" id="copy_zfb">    </button>
 </div>
 <div class="transfer">
   :<span id="wx_account">2222222</span>
 <button onclick="copy2()" data-clipboard-action="copy" data-clipboard-target="#wx_account" id="copy_wx">    </button>
 </div>
 <input type="text" />
 </body>
 
 <script type="text/javascript" src="../js/clipboard.min.js"></script>
 <script>
 function copy1() {
 var clipboard = new Clipboard('#copy_zfb');
 clipboard.on('success', function(e) {
 e.clearSelection(); //         
 alert("    !");
 });
 clipboard.on('error', function(e) {
 alert("           ,     。")
 });
 }
 
 function copy2() {
 var clipboard = new Clipboard('#copy_wx');
 clipboard.on('success', function(e) {
 e.clearSelection(); //         
 alert("    !");
 });
 clipboard.on('error', function(e) {
 alert("           ,     。")
 });
 }
 </script>
 
</html>
효과 그림:

메모:프로젝트 에 다른 전단 프레임 이나 플러그 인 을 사용 했다 면 클립 보드.js 플러그 인과 충돌 할 수 있 습 니 다.해결 방법 은

좋은 웹페이지 즐겨찾기