• html 一键复制


     //一键复制
            $("#b_identifier").click(function() {
                var ssrsss = $(".label-content").attr('title');//获取文本
                var flag = copyText(ssrsss); //传递文本
                flag ? layer.msg('复制成功!', {icon: 1}) : layer.msg('复制失败!', {icon: 2});
            })
            function copyText(text) {
                var textarea = document.createElement("input");//创建input对象
                var currentFocus = document.activeElement;//当前获得焦点的元素
                document.body.appendChild(textarea);//添加元素
                textarea.value = text;
                textarea.focus();
                if(textarea.setSelectionRange)
                    textarea.setSelectionRange(0, textarea.value.length);//获取光标起始位置到结束位置
                else
                    textarea.select();
                try {
                    var flag = document.execCommand("copy");//执行复制
                } catch(eo) {
                    var flag = false;
                }
                document.body.removeChild(textarea);//删除元素
                currentFocus.focus();
                return flag;
            }
    人生得意须尽欢,莫使金樽空对月.
  • 相关阅读:
    ZOJ Bookcase
    C*++ Calculations
    STL <cctype>
    线段树单点更新+区间更新
    ZOJ Supermarket
    STL <cassert>
    算法导论<二>
    MV Maker [DP]
    LIS 最长有序子序列(递增/递减/非递增/非递减)
    LIS
  • 原文地址:https://www.cnblogs.com/luojie-/p/13516464.html
Copyright © 2020-2023  润新知