标签:and rdl 成功 rdd listener board comm plain function
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());
});标签:and rdl 成功 rdd listener board comm plain function
原文地址:http://www.cnblogs.com/laayoune/p/7113289.html