<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function copythis(obj) {
const range = document.createRange();
range.selectNode(obj);
const selection = window.getSelection();
if(selection.rangeCount > 0) selection.removeAllRanges();
selection.addRange(range);
document.execCommand('copy');
}
</script>
</head>
<body>
<table>
<tr>
<td><a οnclick="copythis(this);">111</a></td>
<td>asd</td>
<td>asd</td>
<td>asd</td>
</tr>
<tr>
<td><a οnclick="copythis(this);">222</a></td>
<td>asd</td>
<td>asd</td>
<td>asd</td>
</tr>
</table>
</body>
</html>