js复制文字


var textValue=”要复制的文字”;
// 动态创建 textarea 标签
const textarea = document.createElement(‘textarea’)
// 将该 textarea 设为 readonly 防止 iOS 下自动唤起键盘,同时将 textarea 移出可视区域
textarea.readOnly = ‘readonly’
textarea.style.position = ‘absolute’
textarea.style.left = ‘-9999px’
// 将要 copy 的值赋给 textarea 标签的 value 属性
textarea.value = textValue
// 将 textarea 插入到 body 中
document.body.appendChild(textarea)
// 选中值并复制
textarea.select()
const result = document.execCommand(‘Copy’)
if (result) {
FoxUI.alert(‘复制成功’);
}
document.body.removeChild(textarea)


发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注