私は初心者です。これが私のコードです:
<html>
<head>
<script type="text/javascript">
function replyOne () {
document.getElementById("comment_content").value = document.getElementById("username")
}
</script>
</head>
<body>
<p id="username">Jack</p>
<textarea id="comment_content" ></textarea>
<button onclick="replyOne()">Copy Text</button>
</body>
</html>
ボタンをクリックすると、「Jack」がテキストエリアにコピーされると思います。しかし、代わりに「[object HTMLParagraphElement]」と書くだけです。