国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 語(yǔ)言 > JavaScript > 正文

Vue使用Clipboard.JS在h5頁(yè)面中復(fù)制內(nèi)容實(shí)例詳解

2024-05-06 15:35:01
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

安裝clipboard.js

github路徑:https://github.com/zenorocha/clipboard.js

安裝:

npm install clipboard --save

引入clipboard.js

import ClipboardJS from "clipboard";

<script src="https://clipboardjs.com/dist/clipboard.min.js"></script>

使用:

剪切

<html xmlns="http://www.w3.org/1999/xhtml"><head>  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />  <meta name="apple-mobile-web-app-capable" content="yes">  <meta name="apple-mobile-web-app-status-bar-style" content="black">  <meta name="format-detection" content="telephone=no">  <title>dfsf</title>  <script src="https://clipboardjs.com/dist/clipboard.min.js"></script>  <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"></script>  <script>    $(function() {      new ClipboardJS('.btn');    })  </script></head><body>  <div>    <!-- Target -->    <textarea id="bar">Mussum ipsum cacilds...</textarea>    <!-- Trigger -->    <button class="btn" data-clipboard-action="cut" data-clipboard-target="#bar">  Cut to clipboard</button>  </div></body></html>

復(fù)制

<button class="btn" data-clipboard-action="copy" data-clipboard-target="#bar">

3.在vue中使用并自定義復(fù)制內(nèi)容,定義復(fù)制回調(diào):

<div class="dlbtn cpkw" @click="copykeyword">復(fù)制關(guān)鍵詞</div>·····copykeyword() {   var clipboard = new ClipboardJS(".cpkw", {    text: function(trigger) {     //alert("ok");     return "testvalue";    }   });   clipboard.on("success", e => {    //復(fù)制成功    // 釋放內(nèi)存    clipboard.destroy();   });   clipboard.on("error", e => {    // 不支持復(fù)制     console.log("該瀏覽器不支持自動(dòng)復(fù)制");    // 釋放內(nèi)存    clipboard.destroy();   });

以上就是本次介紹的全部知識(shí)點(diǎn)內(nèi)容,感謝大家對(duì)錯(cuò)新站長(zhǎng)站的支持。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 鹤庆县| 如东县| 达拉特旗| 祁连县| 时尚| 霸州市| 神农架林区| 林芝县| 绥中县| 重庆市| 泽普县| 徐水县| 开远市| 景泰县| 兴义市| 鄂尔多斯市| 平邑县| 余姚市| 南宁市| 嘉鱼县| 信宜市| 石柱| 建瓯市| 宝鸡市| 桑日县| 星座| 阿坝| 耿马| 西畴县| 肇州县| 内江市| 大冶市| 莒南县| 曲靖市| 宁化县| 武乡县| 青州市| 中山市| 柳江县| 余姚市| 保亭|