blear.utils.copy

1Introduction

2Example

var copy = require('blear.utils.copy');

// 复制必须由用户主动发起
btn.onclick = function() {
    copy('Hello');
};

3Static

3.1copy([text]): copied

执行复制命令,复制命令必须由用户主动发起,否则会复制失败

3.1.1text

  • 类型:string
  • 说明:待复制文本

3.1.2copied

  • 类型:boolean
  • 说明:是否复制成功

4Dependencies

5Reference