10sec事にクリップボードにコピーするtextarea
Javascript。
手動のボ夕ンでもcopy出来る。
注意
これをブラウザで開いている間は、 他でcopyしても10sec事にこのtextareaの内容で上書きされるので注意autocopy.html
<html>
<HEAD>
<title> AUTO COPY</title>
</HEAD>
<body>
<button id="bbb">手動コピー</button> <font color="#CCC">Rev.C58-20225i</font><br/>
<textarea id="myText" rows="24" cols="50"></textarea>
</body>
<SCRIPT language="JavaScript">
function copyText()
{
var textArea = document.getElementById("myText");
textArea.select();
document.execCommand("copy");
textArea.setSelectionRange(999, 999);
}
//--- void main(...)
document.getElementById("bbb").addEventListener("click", copyText);
setInterval(() =>
{ console.log("Interval type3");
copyText();
}, 10000); //10sec
</SCRIPT>
</html>