我不能爲我的生活找出爲什麼以下不起作用。我從W3school的例子here拿走了。獲取輸入值並在另一個div中顯示
基本上我想從輸入文本中取值,當它更改並修改另一個div以包含該值時。我只想讓div顯示新的價值,但我確實希望每次都改變它,所以我認爲onchange是要走的路。
<!DOCTYPE html>
<html>
<head>
<script>
function myFunction()
{
var div = document.getElementById('divID');
div.innerHTML = div.innerHTML + x.value;
}
</script>
</head>
<body>
Enter your name: <input type="text" id="fname" onchange="myFunction()">
<p>When you leave the input field, a function is triggered which transforms the input text to upper case.</p>
<div id="divID"></div>
</body>
</html>
在此先感謝所有的幫助。
什麼是'x.value'? – 2013-12-24 02:39:54
「當您離開輸入欄時,會觸發一個功能,將輸入文本轉換爲大寫。」功能在哪裏? – 2013-12-24 02:47:04
對不起,我忘了定義了x.value的那段代碼。 Chancho的假設對這筆錢是正確的。 – MattSizzle