我想在我的javascript代码中插入一个按钮,将此消息复制到剪贴板。
“文字已成功复制”
有什么想法吗?
<html>
<table>
<tr>
<th>CHILE</th>
</tr>
<tr>
<td id="fM"></td>
</tr>
<script>
function Chile(){
document.getElementById("fM").innerHTML = "Text copied succesfully";}
Chile();
</script>
</table>
</html>