我正在尝试创建一个使用 onclick 事件来显示输入字段的函数。这是我的代码。
<!DOCTYPE html>
<html>
<body>
<button onclick="createMessage()">New Message</button>
<script>
function createMessage() {
var input = document.createElement("input");
input.type = "text";
input.className = "message_input";
container.appendChild(input);
};
</script>
</body>
</html>
我究竟做错了什么?