$(‘.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)
})
相关文章
- 10-14移动端300ms点击延迟和点击穿透问题
- 10-14【移动端】移动端点击300ms延迟原因及解决方案
- 10-14vue在移动端实现复制数值到剪贴版
- 10-14vue移动端开发实现点击复制
- 10-14JS pc端和移动端共同实现复制到剪贴板功能实现
- 10-14移动端 点击 复制到剪贴版
- 10-14前端应用 - 实现连线习题兼容移动端进阶版
- 10-14tagCould3d 移动端优化版
- 10-14移动端页面去掉click点击 背景色变化
- 10-14Cocos Creator 点击按钮复制到剪切版