我们的原理是,创建一个 input 元素,将要写入的内容放入 input 里,然后选择 input,再调用浏览器的复制命令,将 input 里的内容复制,最后隐藏 input。
想通了非常容易理解!
我来一段简单的示例,就是将 "hello crx"
写入剪贴板。
var write_Clipper = founction(){
// 创建input元素,给input传值,将input放入html里,选择input
var w = document.createElement('input');
w.value = "hello crx";
document.body.appendChild(w);
w.select();
// 调用浏览器的复制命令
document.execCommand("Copy");
// 将input元素隐藏,通知操作完成!
w.style.display='none';
alert('操作成功!');
}
不断成长的过程总是有很多坎,当我们一个一个把坎走过的时候,成功离我们就就会越来越近!
喜欢的点个赞❤吧!