"; } } return ldgcopystr; } $(function() { InitCopy(); $(".copy1").each(function () { $(this).click(function () { var id = $(this).parent().parent().parent().attr("id"); var copystr = GetCopyStr(id, 1); CopyText(copystr); }); }); $(".copy2").each(function () { $(this).click(function () { var id = $(this).parent().parent().parent().attr("id"); var copystr = GetCopyStr(id, 2); CopyText(copystr); }); }); $(".copy3").each(function () { $(this).click(function () { var id = $(this).parent().parent().parent().attr("id"); var copystr = GetCopyStr(id, 3); CopyText(copystr); }); }); })