2013-10-24 243 views
1

我遇到了一個更復雜的代碼塊的問題,所以我開始用電影The Seven搞個html「笑話」,並意識到這是同樣的問題。爲什麼當我點擊按鈕時它沒有做任何事情?我已經嘗試過添加一個函數和腳本,並得到同樣的問題。我希望它在單擊按鈕時顯示(以前爲空白)輸入框內的文本。如何讓onclick按鈕在輸入框中顯示文本

<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> 
+0

變化'innerHTML'到'value' –

回答

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

相關問題