我在這裏有一個關於數組的工作代碼,但我希望我的輸入以新行顯示而不是單行。我曾嘗試\ n但沒有運氣。JavaScript的NewLine代碼
這裏是我的代碼:
<html>
<meta charset="UTF-8">
<head>
<title>Sample Array</title>
<script>var index = 0;</script>
</head>
<body>
Input:
<input type="text" id="input">
<input type="button" value="GO" onClick="press(input.value)">
<p id = "display">
<script>
var sample = new Array();
function press(Number)
{
if (Number != '')
{
sample[index] = Number;
document.getElementById("display").innerHTML += sample[index] + "\n";
index++;
}
else
alert("empty");
}
</script>
</body>
</html>
我要編碼的的document.getElementById內的換行符。提前致謝。
怎麼樣''
? – nderscore
我忘了這一點。謝謝。 –