首頁  >  文章  >  web前端  >  在JavaScript中如何複製內容到剪貼簿

在JavaScript中如何複製內容到剪貼簿

亚连
亚连原創
2018-06-04 10:11:462143瀏覽

最近一個活動頁面中有一個小需求,用戶點擊或長按就可以複製內容到剪貼板,記錄一下實現過程和遇到的坑,需要的朋友可以參考下

#常見方法

查了一下萬能的Google,現在常見的方法主要是以下兩種:

第三方函式庫:clipboard.js
原生方法:document. execCommand()

分別來看看這兩種方法是如何使用的。

clipboard.js

這是clipboard的官方網站:https://clipboardjs.com/,看起來就是這麼的簡單。

引用

直接引用:

<script src="dist/clipboard.min.js"></script>

套件:npm install clipboard --save ,然後 import Clipboard from 'clipboard';

使用

從輸入框複製
現在頁面上有一個d5fd7aea971a85678ba271703566ebfd 標籤,我們需要複製其中的內容,我們可以這樣做:

<input id="demoInput" value="hello world">
<button class="btn" data-clipboard-target="#demoInput">点我复制</button>

#
import Clipboard from &#39;clipboard&#39;;
const btnCopy = new Clipboard(&#39;btn&#39;);

注意到,在bb9345e55eb71822850ff156dfde57c8 標籤中加入了一個data-clipboard-target 屬性,它的值是需要複製的 d5fd7aea971a85678ba271703566ebfdid,顧名思義是從整個標籤中複製內容。

直接複製

有的時候,我們不希望從 d5fd7aea971a85678ba271703566ebfd 複製內容,只是直接從變數中取值。如果在Vue 中我們可以這樣做:

<button class="btn" :data-clipboard-text="copyValue">点我复制</button>

import Clipboard from &#39;clipboard&#39;;
const btnCopy = new Clipboard(&#39;btn&#39;);
this.copyValue = 'hello world';

事件

##有的時候我們需要在複製後做一些事情,這時候就需要回呼函數的支援。

在處理函數中加入以下程式碼:

// 复制成功后执行的回调函数
clipboard.on('success', function(e) {
 console.info('Action:', e.action); // 动作名称,比如:Action: copy
 console.info('Text:', e.text); // 内容,比如:Text:hello word
 console.info('Trigger:', e.trigger); // 触发元素:比如:<button class="btn" :data-clipboard-text="copyValue">点我复制</button>
 e.clearSelection(); // 清除选中内容
});

// 复制失败后执行的回调函数
clipboard.on('error', function(e) {
 console.error('Action:', e.action);
 console.error('Trigger:', e.trigger);
});

#小結

文件中還提到,如果在單一頁面中使用

clipboard ,為了使得生命週期管理更加的優雅,在使用完之後記得btn.destroy() 銷毀一下。

clipboard 使用起來是不是很簡單。但是,就為了一個 copy 功能就使用額外的第三方函式庫是不是不夠優雅,這時候該怎麼辦?那就用原生方法實作唄。

document.execCommand()方法

先看看這個方法在

MDN 上是怎麼定義的:

which allows one to run commands to manipulate the contents of the editable region.


意思是可以允許執行指令來操作可編輯區域的內容,注意,是可編輯區域。

定義

bool = document.execCommand(aCommandName, aShowDefaultUI, aValueArgument)

方法傳回 Boolean 值,表示操作是否成功。

  • aCommandName :表示指令名稱,例如: copy, cut 等(更多指令見指令);

  • aShowDefaultUI:是否顯示使用者介面,一般情況下都是false;

  • aValueArgument:有些指令需要額外的參數,一般用不到;

##相容性

這個方法在之前的兼容性其實是不太好的,但是好在現在已經基本上兼容所有主流瀏覽器了,在行動端也可以使用。

使用

從輸入框複製

現在頁面上有一個d5fd7aea971a85678ba271703566ebfd 標籤,我們想要複製其中的內容,我們可以這樣做:


<input id="demoInput" value="hello world">
<button id="btn">点我复制</button>

js程式碼

##

const btn = document.querySelector(&#39;#btn&#39;);
btn.addEventListener(&#39;click&#39;, () => {
	const input = document.querySelector(&#39;#demoInput&#39;);
	input.select();
	if (document.execCommand(&#39;copy&#39;)) {
		document.execCommand(&#39;copy&#39;);
		console.log(&#39;复制成功&#39;);
	}
})

其它地方複製

有的時候頁面上並沒有d5fd7aea971a85678ba271703566ebfd

標籤,我們可能需要從一個

e388a4556c0f65e1904146cc1a846bee 複製內容,或直接複製變數。 還記得在execCommand()

方法的定義中提到,它只能操作可編輯區域,也就是意味著除了d5fd7aea971a85678ba271703566ebfd、4750256ae76b6b9d804861d8f69e79d3 這樣的輸入域以外,是無法使用這個方法的。

這時候我們需要曲線救國。

0daa849bc639fff17b006ca8cf3a07ca點我複製65281c5ac262bf6d81768915a4a77ac0

js程式碼

##
const btn = document.querySelector(&#39;#btn&#39;);
btn.addEventListener(&#39;click&#39;,() => {
	const input = document.createElement(&#39;input&#39;);
	document.body.appendChild(input);
 	input.setAttribute(&#39;value&#39;, &#39;听说你想复制我&#39;);
	input.select();
	if (document.execCommand(&#39;copy&#39;)) {
		document.execCommand(&#39;copy&#39;);
		console.log(&#39;复制成功&#39;);
	}
 document.body.removeChild(input);
})

#算是曲線救國成功了吧。在使用這個方法時,遇到了幾個坑。

遇到的坑

在Chrome下調試的時候,這個方法時完美運行的。然後到了行動端調試的時候,坑就出來了。 對,沒錯,就是你,ios。 。 。

1、點擊複製時螢幕下方會出現白屏抖動,仔細看是拉起鍵盤又瞬間收起

知道了抖動是由於什麼產生的就比較好解決了。既然是拉起鍵盤,那就是聚焦到了輸入域,只要讓輸入域不可輸入就好了,在程式碼中加入input.setAttribute('readonly', 'readonly'); 使這個d5fd7aea971a85678ba271703566ebfd 是唯讀的,就不會拉起鍵盤了。

2、無法複製

这个问题是由于 input.select() 在ios下并没有选中全部内容,我们需要使用另一个方法来选中内容,这个方法就是 input.setSelectionRange(0, input.value.length);。

完整代码如下:

const btn = document.querySelector(&#39;#btn&#39;);
btn.addEventListener(&#39;click&#39;,() => {
	const input = document.createElement(&#39;input&#39;);
 input.setAttribute(&#39;readonly&#39;, &#39;readonly&#39;);
 input.setAttribute(&#39;value&#39;, &#39;hello world&#39;);
 document.body.appendChild(input);
	input.setSelectionRange(0, 9999);
	if (document.execCommand(&#39;copy&#39;)) {
		document.execCommand(&#39;copy&#39;);
		console.log(&#39;复制成功&#39;);
	}
 document.body.removeChild(input);
})

上面是我整理给大家的,希望今后会对大家有帮助。

相关文章:

详细讲解使用Node.js写一个简单的命令行工具(详细教程)

在Node.js中使用cheerio制作简单的网页爬虫(详细教程)

在vue中如何实现父组件向子组件传递多个数据

以上是在JavaScript中如何複製內容到剪貼簿的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn