手机端实现点击复制功能
function Copy(str){ var save = function(e){ e.clipboardData.setData('text/plain', str); e.preventDefault(); } document.addEventListener('copy', save); document.execCommand('copy'); document.removeEventListener('copy',save); alert('复制成功!'); } $('#cardList').on('click', 'div.btn', function(){ Copy($(this).prev('div').find('span.code').text()); });