Skip to content
On this page

Home > @taiyuuki/utils > copy_text

copy_text() function

该函数使用剪贴板 API(如果可用)将文本复制到剪贴板,否则它回退到创建临时文本区域元素并使用 execCommand 方法。

Signature:

typescript
declare function copy_text(target: string | number | HTMLElement, addition?: string): void;
declare function copy_text(target: string | number | HTMLElement, addition?: string): void;

Parameters

ParameterTypeDescription
targetstring | number | HTMLElement目标可以是字符串、数字或 HTMLElement。它是将被复制到剪贴板的文本。
additionstring(Optional) 在将文本复制到剪贴板之前将附加到文本的可选字符串。如果未提供任何值,则文本将按原样复制。

Returns:

void

Released under the MIT License.