//一鍵復制 $("#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; }