if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) { //區(qū)分iPhone設(shè)備
window.getSelection().removeAllRanges(); //這段代碼必須放在前面否則無效
var Url2 = document.getElementById("biaoios"); //要復(fù)制文字的節(jié)點(diǎn)
var range = document.createRange();
// 選中需要復(fù)制的節(jié)點(diǎn)
range.selectNode(Url2);
// 執(zhí)行選中元素
window.getSelection().addRange(range);
// 執(zhí)行 copy 操作
var successful = document.execCommand('copy');
// 移除選中的元素
window.getSelection().removeAllRanges();
} else {
var save = function (e) {
e.clipboardData.setData('text/plain', _this.yaoqingma);
e.preventDefault();
}
document.addEventListener('copy', save);
document.execCommand('copy');
document.removeEventListener('copy', save);
}
//復(fù)制 按鈕顯示消失
$('.copy_success').css('display', 'block');
setTimeout(function () {
$('.copy_success').css('display', 'none');
}, 800);
復(fù)制按鈕效果
.copy_success {
width: 280px;
height: 80px;
background: #000;
opacity: 0.5;
font-size: 24px;
text-align: center;
color: #fff;
line-height: 80px;
border-radius: 20px;
position: absolute;
left: 50%;
margin-left: -140px;
bottom: 180px;
display: none;
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者