码迷,mamicode.com
首页 > Web开发 > 详细

jquery非文本框复制

时间:2018-09-16 12:29:44      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:else   jquer   toe   node   添加   doc   使用方法   command   com   

        function selectText(x) {
            if (document.selection) {
                var range = document.body.createTextRange();//ie
                range.moveToElementText(x);
                range.select();
            } else if (window.getSelection) {
                var selection = window.getSelection();
                var range = document.createRange();
                selection.removeAllRanges();
                range.selectNodeContents(x);
                selection.addRange(range);
            }
        }
        function cp(x) {
            selectText(x);
            document.execCommand("copy");
            layer.msg("已复制");
        }
        function gettxt(obj) {
            show(obj);
        }
        function show(txt) {
                layer.open({
                    type: 1,
                    title: "URL",
                    closeBtn: 0,
                    shadeClose: true,
                    skin: yourclass,
                    area: [30%, auto],
                    content: "<p onclick=‘cp(this);‘>"+txt+"</p>"
                });
        }

使用方法:
直接在要复制的标签上添加click事件

  onclick="gettxt($(this).attr(‘title‘));"

 

onclick=cp(this);

 

jquery非文本框复制

标签:else   jquer   toe   node   添加   doc   使用方法   command   com   

原文地址:https://www.cnblogs.com/romanticcrystal/p/9655063.html

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