码迷,mamicode.com
首页 > 其他好文 > 详细

【H5】复制粘贴

时间:2018-01-31 14:23:07      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:creat   使用   script   catch   try   dom   get   osi   remove   

源文案地址

 

使用案例

案例1:复制分享链接

function copyTextToClipboard(text) {
        var textArea = document.createElement("textarea")
        textArea.style.position = ‘fixed‘
        textArea.style.top = 0
        textArea.style.left = 0
        textArea.style.width = ‘2em‘
        textArea.style.height = ‘2em‘
        textArea.style.padding = 0
        textArea.style.border = ‘none‘
        textArea.style.outline = ‘none‘
        textArea.style.boxShadow = ‘none‘
        textArea.style.background = ‘transparent‘
        textArea.value = text
        document.body.appendChild(textArea)
        textArea.select()
        try {
            var msg = document.execCommand(‘copy‘) ? ‘成功‘ : ‘失败‘;
            console.log(‘复制内容 ‘ + msg)
        } catch (err) {
            console.log(‘不能使用这种方法复制内容‘)
        }
        document.body.removeChild(textArea)
    }

  调用:

  <div class="share"><a href="prodetail.html"></a></div>

$(‘.share a‘).on(‘click‘,function(e){
var linkHref="http://"+document.domain+"/"+$(this).attr(‘href‘);
copyTextToClipboard(linkHref);
var tip = document.execCommand(‘copy‘) ? ‘成功‘ : ‘失败‘;
layui.use( ‘layer‘, function() {
var layer = layui.layer;
layer.msg(‘复制‘ + tip)
});
return false;
})

//与原例不同的是 添加了返回结果tip用layer提示

 

【H5】复制粘贴

标签:creat   使用   script   catch   try   dom   get   osi   remove   

原文地址:https://www.cnblogs.com/smilexumu/p/8391508.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!