JS复制内容到粘贴板

使用document.execCommand()方法 - 复制内容到粘贴板

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

//可以允许运行命令来操作可编辑区域的内容。(注意:是可编辑区域)

定义:

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

aCommandName :表示命令名称,如: copy, cut 等;

aShowDefaultUI:是否展示用户界面,一般情况下都是 false;

aValueArgument:有些命令需要额外的参数,一般用不到;

兼容性:

这个方法在之前的兼容性其实是不太好的,但是好在现在已经基本兼容所有主流浏览器了,在移动端也可以使用。

使用:

            

你可能感兴趣的:(JS复制内容到粘贴板)