尝试使用javascript获取换行符但不起作用。
document.getElementById('section').textContent = "Hello world<br>" + msg;
我也尝试过:
document.getElementById('section').textContent = "Hello world" + /n msg;
也不工作..我错过了什么吗?
答案 0 :(得分:5)
目前,您正在添加文字文字,而不是HTML /
元素。您要么想要设置元素的innerHTML ...
<br>
...或创建文本和document.getElementById('section').innerHTML = "Hello world<br>";
元素并将其附加到文档中。
<br>