js 复制到粘贴板
/**
* 复制内容
* @param {String} content 要复制的内容 此函数不能直接跟在异步函数之后 若跟在异步函数后可能会有兼容问题)
* @return {boolean}
*/
copyContent = content => {
if (!content) {
return false
}
const input = document.createElement('input')
input.value = content
input.style.position = 'absolute'
document.documentElement.appendChild(input)
input.select()
document.execCommand('copy')
document.documentElement.removeChild(input)
return true
}