1

我在使用更复杂的代码块时遇到了这个问题,所以我开始在电影 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>
4

1 回答 1

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';">

看到它在行动

于 2013-10-24T23:32:44.743 回答