<body>
<center>
<input type="text" id="item">
<button onclick="getItem()">Add to List</button> <br>
<textarea readonly id="list"></textarea>
</body>
<script>
function getItem() {
document.getElementById("list").value += document.getElementById("item").value;
}
</script>
</html>
正如您可能知道的那样,我创建了一个“项目”文本框和一个按钮,当单击该按钮时,将所述“项目”文本框的内容添加到“列表”文本区域。
我想知道的是如何在添加项目之前添加换行符?
答案 0 :(得分:5)
document.getElementById("list").value += "\n" + document.getElementById("item").value;