在JS中添加字符串之前强行换行?

时间:2015-04-06 13:00:03

标签: javascript

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

正如您可能知道的那样,我创建了一个“项目”文本框和一个按钮,当单击该按钮时,将所述“项目”文本框的内容添加到“列表”文本区域。

我想知道的是如何在添加项目之前添加换行符?

1 个答案:

答案 0 :(得分:5)

document.getElementById("list").value += "\n" + document.getElementById("item").value;