移动端 点击 复制到剪贴版
$('.copy').click(function(){
var text='555\n88888';
const input = document.createElement('textarea');
input.value=text;
document.body.appendChild(input);
if (document.execCommand('copy')) {
input.select()
document.execCommand('copy');
}
document.body.removeChild(input);
})

浙公网安备 33010602011771号