js 代码操控手机粘贴板


js 代码操控手机粘贴板

将字符串复制到粘贴板:

1
2
3
4
5
6
7
8
9
//设置剪切板内容 注意:clipboardData.setData("参数1","参数2")  参数1的值要对应http的content-type的类型,如果没有设置参数1的话有可能会报错
document.addEventListener("copy",function () {
if (event.clipboardData || event.originalEvent) {
var clipboardData = (event.clipboardData || event.originalEvent.clipboardData);
const selection = "AAAAA";
clipboardData.setData('text/plain', selection.toString());
event.preventDefault();
}
});

从粘贴板获取内容:

1
2
3
4
5
6
7
8
9
//获取剪切板的内容
document.addEventListener("paste", function () {
if (event.clipboardData || event.originalEvent) {
var clipboardData = (event.clipboardData || window.clipboardData);
var val = clipboardData.getData('text');
console.log(val);
event.preventDefault();
}
});