移动端 点击 复制到剪贴版
$(‘.copy‘).click(function(){
var text=$(this).prev().children().text()
const input = document.createElement(‘input‘);
input.setAttribute(‘readonly‘,‘readonly‘);
input.setAttribute(‘value‘,text);
document.body.appendChild(input);
input.setSelectionRange(0, 9999);
if (document.execCommand(‘copy‘)) {
input.select()
document.execCommand(‘copy‘);
}
document.body.removeChild(input);
$(‘.clipBoard_notice‘).css(‘display‘,‘block‘)
clearTimeout(this.delay)
this.delay=setTimeout(function(){
$(‘.clipBoard_notice‘).css(‘display‘,‘none‘)
},2000)
})
温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/SQL/15236.html