如何获取onclick按钮以在输入框中显示文本

时间:2013-10-24 23:27:37

标签: html button input onclick

我遇到了一个更复杂的代码块问题,所以我开始搞乱电影The Seven的html“笑话”,并意识到这是同样的问题。单击按钮时为什么不执行任何操作?我已经尝试过添加一个函数和脚本,得到同样的问题。我希望它在您单击按钮时显示(以前为空白)输入框内的文本。

<html>
<body>
The Box:<input type="text" id="thebox" value="" size=10>
<br><input type="button" value="What's in the booooox?" onclick="document.getElementById('thebox').innerHTML='head of gwyneth paltrow';">
</body>
</html>

1 个答案:

答案 0 :(得分:0)

innerHTML,顾名思义,指的是元素的HTML内容。您需要使用value

The Box:<input type="text" id="thebox" value="" size=10>
<br><input type="button" value="What's in the booooox?" onclick="document.getElementById('thebox').value='head of gwyneth paltrow';">

See it in action