$(".copy_btn").each(function(){ var text1 = $(this).attr("data-text"); var clipboard = new Clipboard(this, { text: function() { return text1; } }); clipboard.on('success', function(e) { alert("地址复制成功"); }); }); $(".copy_text").each(function(){ var text2 = $(this).text(); var clipboard = new Clipboard(this, { text: function() { return text2; } }); clipboard.on('success', function(e) { alert("地址复制成功"); }); }); $(".copy_checked").each(function(){ var checked_url=[]; $(this).parent().parent().find("li").find(".copy_text").each(function(){ checked_url.push($(this).text()); }); var clipboard = new Clipboard(this, { text: function() { return checked_url.join('\n'); } }); clipboard.on('success', function(e) { alert("地址复制成功"); }); });