H5手机端直接写入剪切板

  1. 增加一个隐藏input标签

readonly可以避免Android端键盘唤醒

  1. JS代码
let input = document.getElementById("foo");
input.select();
document.execCommand("copy");

Done.

你可能感兴趣的:(H5手机端直接写入剪切板)