我正在嘗試獲取輸入的值,並在用戶輸入時將其顯示在其下的div中。我想用香草js做。沒有j查詢。從輸入中獲取值並在div中顯示
我的HTML:
<div id="userInputBox">
<input id="inputText" type="text"
placeholder="Enter your question" size = "50" onkeyup="myDisplay()"/>
</div>
<div class="displayQuestion"></div>
MY JS:
var input = document.getElementById('inputText').value;
var showQuestion = document.getElementsByClassName('displayQuestion');
function myDisplay(e){
showQuestion.innerHTML = input;
}
請低於 – Aruna
看看我回答了你的問題與'className'但你已經接受了'id'解決方案。我可以知道原因嗎? – Aruna