我是新手。这是我的代码:
<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]”。