谷歌浏览器 怎么用js复制东西到剪贴板

2025-04-05 17:38:58
推荐回答(1个)
回答1:

Chrome原生支持window的copy方法

window.copy("this is a test string");

这样,就把“this is a test string”复制到了剪贴板中

不过要注意,该方法的跨平台性不强,低版本的IE可能不支持